1.資料型別
1、數值(numbers):btye、short、int、long、float、double。
2、字元(characters):char。
3、字串(strings):string。
4、布林(boolean):boolean。
5、陣列(arrays):array
2.數值
1、長整型-100l、十六進製制-0xff00、二進位制-0b0001、浮點型-1.1f/f
2、數字比較:===:表示比較物件位址;==:表示比較值大小
3.型別轉換
1、tobyte()、toshort()、to***()
4.位操作符
private
funtest2()
5.字元
1、不能直接和數字操作。如:『c』 == 1
6.布林
1、boolean:true、false
2、|| 短路邏輯或、&& 短路邏輯與、! 邏輯非
7.陣列
fun
test4()
)println
(arr1.
get(1)
)println
(arr2[1]
)}
8.字串/*
* 1、三個引號多行輸出。2、遍歷
*/fun
test5()
}
9.字串模板fun
test6()
")// 麼麼噠.length = 3
print("$
")}
Kotlin基本資料型別
type bitdouble 64float 32long 64int 32short 16byte 8type chararray bytearray shortarray intarray floatarray doublearray 常量 定義 val final hello world st...
Kotlin的基本資料型別
在學習一門程式語言,那必然是學習語法 在語法的學習之中資料型別又有著舉足輕重的地位,今天我們就聊聊kotlin的基本資料型別 kotlin 提供了一組表示數字的內建型別。對於整數,有四種不同大小的型別,因此值的範圍也不同。這是kotlin官網的一張關於基本資料型別的截圖,kotlin的一大特點便是資...
基本資料型別
列舉 定義列舉型別 enum season 定義兩個列舉變數 enum season mylove yourlove 為兩個列舉變數賦值 yourlove fall mylove winter 把列舉值當成無符號整數執行輸出 nslog fall 的值 u fall 3 nslog winter 的...