Değişkenin tipini when() metodu ile kontrol etme

Bu yazıda, veri tipi ile When() kullanımına bir örnek görebilirsiniz. Veri türü, çalıştırılacak kodu belirleyecektir.

 val x : Any = 12.75
    when(x){
        is Int -> println("$x is an Integer")
        is Double -> println("$x is a Double")
        is String -> println("$x is a String")
        else -> println("$x is not Int,Double or String")

    }
Son düzenleme 17.01.2025: new translations (f32b526)