“Statische Variable in Kotlin” 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 “Statische Variable in Kotlin”

Fragen ähnlich wie “Statische Variable in Kotlin”

Weitere verwandte Antworten zu “Statische Variable in Kotlin” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen