gpt4 book ai didi

java - Xtend 中的类构造函数

转载 作者:搜寻专家 更新时间:2023-10-31 08:14:05 30 4
gpt4 key购买 nike

我正在尝试 Xtend .是否有可能制作构造函数?看起来很简单,但是当我尝试这样的事情时出现错误:

class Scope extends Rect {

public Scope(){
super()
}

}

最佳答案

构造函数是通过重载 new() 方法定义的:

class MyClass extends AnotherClass {
new(String s) {
super(s)
}

new() {
this("default")
}
}

here

关于java - Xtend 中的类构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8034395/

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