“Kotlin Global Variable” Code-Antworten

Kotlin Global Variable

In Kotlin, A global variable is a variable that is declared at the top of the program and outside all functions similar to C and C++. A local variable can only be used in the particular block where it is declared. A global variable can be used in all functions.
Santino

Kotlin Global Variable

var x = 100

fun fn() { 
    x = x + 100 
}

fun main(args: Array<String>) {
    println("X Value : $x")
    
    fn()
    
    println("X Value : $x")
}
Santino

Ähnliche Antworten wie “Kotlin Global Variable”

Fragen ähnlich wie “Kotlin Global Variable”

Weitere verwandte Antworten zu “Kotlin Global Variable” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen