📜  kotlin 中的静态变量 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:09.994000             🧑  作者: Mango

代码示例2
class Test {
companion object {
        var mInteger: Int = 10
        fun hello() = println("hello world !")
    }
}

fun main(args: Array) {
    print(Test.mInteger)
    print(Test.hello())
}