以前版本的 dart 能够让 getter 使用
cm.getters.values
正如在这个答案中发布的那样:https ://stackoverflow.com/a/14505025/2117440
然而,实际版本已被删除,并被替换为
cm.declarations.values
最后一段代码获取所有属性、getter、setter、方法和构造函数。我想知道是否有一种方法可以只获得“getter and attributes”而没有其他方法。
我现在使用的代码是:
import "dart:mirrors";
class MyNestedClass {
String name;
}
class MyClass {
int i, j;
MyNestedClass myNestedClass;
int sum() => i + j;
MyClass(this.i, this.j);
}
void main() {
MyClass myClass = new MyClass(3, 5)
..myNestedClass = (new MyNestedClass()..name = "luis");
print(myClass.toString());
InstanceMirror im = reflect(myClass);
ClassMirror cm = im.type;
Map<Symbol, MethodMirror> instanceMembers = cm.instanceMembers;
cm.declarations.forEach((name, declaration) {
if(declaration.simpleName != cm.simpleName) // If is not te constructor
print('${MirrorSystem.getName(name)}:${im.getField(name).reflectee}');
});
}
正如您在前面的代码中看到的那样,检查是否不是我需要比较的构造函数declaration.simpleName
with cm.simpleName
。直到我明白是低效的,因为我们正在比较字符串。
总之,我想知道是否有或将有更好的方法来解决这个问题。