“Kotlin statische Variable” Code-Antworten

Statische Variable in Kotlin



    companion object {
        lateinit var myStaticStr: String
    }

   
abdullah

Kotlin statische Variable

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

fun main(args: Array<String>) {
    print(Test.mInteger)
    print(Test.hello())
}
abdullah

Ähnliche Antworten wie “Kotlin statische Variable”

Fragen ähnlich wie “Kotlin statische Variable”

Weitere verwandte Antworten zu “Kotlin statische Variable” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen