“Kotlin Primary Constructor” Kod odpowiedzi

Kotlin Primary Constructor

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

Kotlin drugorzędny konstruktor

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

Odpowiedzi podobne do “Kotlin Primary Constructor”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu