“Kotlin drugorzędny konstruktor” Kod odpowiedzi

Kotlin drugorzędny konstruktor

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

Jakie jest zastosowanie wtórnego konstruktora w 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 Primary Constructor

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

Odpowiedzi podobne do “Kotlin drugorzędny konstruktor”

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

Przeglądaj inne języki kodu