Kotlin distinguishes between read-only variables, declared using "val", ... val a:Int = 5 //read-only variable a of type Int, with value 5 val b = 2 ...
確定! 回上一頁