gpt4 book ai didi

dart - Dart 中的 Python @property 等价物?

转载 作者:行者123 更新时间:2023-12-03 02:45:18 25 4
gpt4 key购买 nike

Python 可以通过装饰器 @property 像属性一样访问方法。 Dart 有这样的东西吗?

class Test():
@property
def example():
return "This isn't really a property"

a = new Test()
print a.example

最佳答案

getters的概念看起来很相似:

class Test {
String get example {
return "This isn't really a property";
}
}

main() {
var a = new Test();
print(a.example);
}

关于dart - Dart 中的 Python @property 等价物?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17427431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com