Dart Flutter中的 中的Getter 和 Setter

发布于 1周前 作者 itying888 最后一次编辑是 5天前 来自 分享

Dart Flutter中的 中的Getter 和 Setter 仿小米App实战系列教程https://www.itying.com/goods-1176.html

Dart Flutter中的 中的Getter 和 Setter

Dart Flutter中 getter 和 setter 方法是用于操作类字段数据的类方法。 getter 用于读取或获取类字段的数据,而 setter 用于将类字段的数据设置为某个变量。

class Rect {
  num height;
  num width;
  Rect(this.height, this.width);
  get area {
    return this.height * this.width;
  }
  set areaHeight(value) {
    this.height = value;
  }
}
void main() {
  Rect r = new Rect(10, 4);
  print("面积:${r.area()}");
  r.areaHeight = 6;
  print(r.area);
}

Dart Flutter仿小米App实战系列教程https://www.itying.com/goods-1176.html

回到顶部