“Begleitobjekt Kotlin” Code-Antworten

Kotlin Begleitobjekt

companion object{
        const val DATA = "data"
}
Al Zaini Azharie

Begleitobjekt Kotlin

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

Begleitobjekte Kotlin

class Person {
    companion object Test {
        fun callMe() = println("I'm called.")
    }
}

fun main(args: Array<String>) {
    Person.callMe()
}
SAMER SAEID

Kotlin Begleitobjekte

class Person {
    fun callMe() = println("I'm called.")
}

fun main(args: Array<String>) {
    val p1 = Person()
    
    // calling callMe() method using object p1
    p1.callMe()    
}
SAMER SAEID

Ähnliche Antworten wie “Begleitobjekt Kotlin”

Fragen ähnlich wie “Begleitobjekt Kotlin”

Weitere verwandte Antworten zu “Begleitobjekt Kotlin” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen