gpt4 book ai didi

reflection - 类方法的 noSuchMethod(又名静态方法)

转载 作者:行者123 更新时间:2023-12-02 08:34:01 26 4
gpt4 key购买 nike

我使用 dart 已经有一段时间了。如果我想为一个类的对象实现动态的 getter、setter 和函数,我可以使用 noSuchMethod 方法。但是如果我现在想在class层有这样一个动态的getter,setter方法怎么办?例如,在 Ruby 中,如果要实现动态类方法,可以在类对象上定义 method_missing 方法,例如:

class Test
def self.method_missing
//Do some matching, return result or error
end
end

我如何在 Dart 中实现这一点?

最佳答案

我不认为你可以在没有镜子/反射的情况下在 Dart 中做到这一点。

我也觉得这个用处不大。
您不能在“动态”类型上调用静态方法,因此您不能模拟静态方法。

如果你需要这个,你应该把它变成一个普通的方法而不是一个静态的。

关于reflection - 类方法的 noSuchMethod(又名静态方法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23624989/

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