有没有办法在 Groovy 中拥有可调用对象?
例如,如果我有一个名为 A 的类。我可以像 Python 一样使对象可调用吗? 例如:
def myObject = new A()
myObject()
这将调用一些对象方法。 能做到吗?
If for example I have a class named A. Can I make an object be callable, just like Python does? For example :
def myObject = new A()
myObject()
and that would call some object method. Can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Groovy 中,默认情况下只有闭包是可调用的。 例如,类不能直接调用。 如果需要,您可以动态地将调用方法添加到类型的 ExpandoMetaClass 使该类型的所有实例可调用。
提示:您可以使用 GroovyConsole 尝试所有代码示例
闭包可调用 Groovy 中的默认设置:
要使特定类型的所有实例可调用,您可以动态地将调用方法添加到其元类:
如果您只想使特定实例可调用,您可以动态地将调用方法添加到其元类中:
In Groovy only closures are callable by default. E.g. Classes are not callable out of the box. If necessary you can dynamically add a call method to a type's ExpandoMetaClass to make all instances of that type callable.
Hint: you can try out all code sample using the GroovyConsole
Closures are callable by default in Groovy:
To make all instances of a specific type callable you can dynamically add a call method to its meta class:
If you rather only make a specific instance callable you can dynamically add a call method to its meta class: