“Konstruktor Sekunder Kotlin” Kode Jawaban

Konstruktor Sekunder Kotlin

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

Apa gunanya konstruktor sekunder di 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

Konstruktor Primer Kotlin

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

Jawaban yang mirip dengan “Konstruktor Sekunder Kotlin”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya