gpt4 book ai didi

java - xtend 支持多个构造函数吗?

转载 作者:行者123 更新时间:2023-12-02 02:07:05 25 4
gpt4 key购买 nike

我正在使用 Eclipse IDE。第一个构造函数可调用,但第二个构造函数不可调用。我想知道 xtend 是否支持多个构造函数?

@Data abstract class MatchingBase implements TidilySerializable {
val List<Integer> connections

new (int componentSize) {
connections = (0 ..< componentSize).toList
}

new (List<Integer> conn) {
connections = new ArrayList<Integer>()
for (int i : 0 ..< componentSize)
connections.add(conn.get(i))
}
}

@Data class Permutation extends MatchingBase {
}

那么如果我打电话new Permutation(new ArrayList<Integer>())在 Eclipse 中将其强调为编译时错误。

最佳答案

是的,它支持多个构造函数。但是,我相信错误是由于您的第二个构造函数而发生的。在第二个构造函数的范围内,它不知道 componentSize 是什么。你的意思是这样的吗

new (List<Integer> conn) {
connections = new ArrayList<Integer>()
for (int i : 0 ..< conn.size) {
connections.add(conn.get(i))
}
}

查看文档 here有关 xtend 构造函数的更多信息

关于java - xtend 支持多个构造函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50613700/

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