gpt4 book ai didi

groovy - 我可以在 Groovy 中覆盖 cast 运算符吗?

转载 作者:行者123 更新时间:2023-12-01 11:57:50 25 4
gpt4 key购买 nike

我需要尽可能类似的东西:

interface Bar { 
def doSomething()
}

class Foo { // does not implement Bar.

def doSomethingElse() {
}

Bar asBar() { // cast overload
return new Bar() {
def doSomething() {
doSomethingElse()
}
}
}

}

Foo foo = new Foo()
Bar bar = foo as Bar
bar.doSomething()

Groovy 中有这样的东西吗?

最佳答案

您是否尝试过覆盖 Object#asType(Class)方法?

关于groovy - 我可以在 Groovy 中覆盖 cast 运算符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5247648/

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