为什么不编译?
class test
{
constructor() {
var a = Date().day
this(a)
}
constructor(a:Int) {
}
}
错误是:
类型为“test”的表达式“this”不能作为函数调用。找不到函数“invoke()”。
建议的解决方案是添加以下内容:
private operator fun invoke(i: Int) {}
为什么?
最佳答案
首先,这两个构造函数都是辅助构造函数。主构造函数是位于类主体外部的构造函数。
其次,如documentation中所述,调用另一个构造函数的正确语法如下:
class Test {
constructor() : this(1) { }
constructor(a: Int) { }
}
关于kotlin - Kotlin主要构造函数调用次要构造函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51657535/