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

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

January 16, 2022·İbrahim Korucuoğlu
İbrahim Korucuoğlu

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")

    }

Last updated on