“Kotlin Sekundärkonstruktor” Code-Antworten

Kotlin Sekundärkonstruktor

class Log {
    constructor(data: String) {
        // some code
    }
    constructor(data: String, numberOfData: Int) {
        // some code
    }
}
SAMER SAEID

Was nutzt der Sekundärkonstruktor in Kotlin?

Although secondary constructors are not that common in Kotlin. The most common use of secondary constructor comes up when you need to extend a class that provides multiple constructors that initialize the class in different ways.
Pranay Mangla

Kotlin Primärkonstruktor

class Person(val firstName: String, var age: Int) {
    // class body
}
SAMER SAEID

Ähnliche Antworten wie “Kotlin Sekundärkonstruktor”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen