面向对象-getter-setter
// class Rect {
// num heihgt;
// num width;
// Rect(this.heihgt, this.width);
// area() {
// return this.heihgt * this.width;
// }
// }
class Rect {
num heihgt;
num width;
Rect(this.heihgt, this.width);
// area() {
// return this.heihgt * this.width;
// }
get area {
return this.heihgt * this.width;
}
set areaHieght(value) {
this.heihgt = value;
}
}
void main() {
Rect r = new Rect(10, 4);
// print(r.area());
print(r.area);
r.areaHieght = 6;
print(r.area);
}
我是Eric,手机号是13522679763

浙公网安备 33010602011771号