有没有办法在 Groovy 中拥有可调用对象?

发布于 2024-07-28 22:42:41 字数 141 浏览 6 评论 0原文

例如,如果我有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-08-04 22:42:41

在 Groovy 中,默认情况下只有闭包是可调用的。 例如,类不能直接调用。 如果需要,您可以动态地将调用方法添加到类型的 ExpandoMetaClass 使该类型的所有实例可调用

提示:您可以使用 GroovyConsole 尝试所有代码示例

闭包可调用 Groovy 中的默认设置:

// A closure
def doSomething = { println 'do something'}
doSomething()
    
// A closure with arguments
def sum = {x, y -> x + y}
sum(5,3)
sum.call(5,3)
    
// Currying
def sum5 = sum.curry(5)
sum5(3)

要使特定类型的所有实例可调用,您可以动态地将调用方法添加到其元类:

MyObject.metaClass.call = { println 'I was called' }
def myObject = new MyObject()
myObject()

如果您只想使特定实例可调用,您可以动态地将调用方法添加到其元类中:

def myObject = new MyObject()
myObject.metaClass.call = { println 'Called up on' }
myObject()

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:

// A closure
def doSomething = { println 'do something'}
doSomething()
    
// A closure with arguments
def sum = {x, y -> x + y}
sum(5,3)
sum.call(5,3)
    
// Currying
def sum5 = sum.curry(5)
sum5(3)

To make all instances of a specific type callable you can dynamically add a call method to its meta class:

MyObject.metaClass.call = { println 'I was called' }
def myObject = new MyObject()
myObject()

If you rather only make a specific instance callable you can dynamically add a call method to its meta class:

def myObject = new MyObject()
myObject.metaClass.call = { println 'Called up on' }
myObject()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文