最佳答案
如何在 Kotlin 声明辅助构造函数?
有相关文件吗?
以下不编译..。
class C(a : Int) {
// Secondary constructor
this(s : String) : this(s.length) { ... }
}