📜  来自另一个类的 kotlin 访问变量 - Kotlin 代码示例
📅  最后修改于: 2022-03-11 14:53:32.940000             🧑  作者: Mango
代码示例1
class Test {
companion object {
var mInteger: Int = 5
}
}
//You can call like this
Test.Companion.mInteger
or
Test.mInteger