“Variable global de Kotlin” Código de respuesta

Variable global de Kotlin

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

Variable global de Kotlin

var x = 100

fun fn() { 
    x = x + 100 
}

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

Respuestas similares a “Variable global de Kotlin”

Preguntas similares a “Variable global de Kotlin”

Más respuestas relacionadas con “Variable global de Kotlin” en Kotlin

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código