基本类型数据

Kotlin Java
字节 Byte byte/Byte
整型 Int & Long int/Integer & long/Long
浮点型 Float & Double float/Float & double/Double
字符 Char char/Character
字符串 String String
有符号类型 无符号类型
字节 Byte UByte
短整型 Short UShort
整型 Int UInt
长整型 Long ULong
字符串 String String

数值类型

字符类型

1 . 声明变量

val a : String = "Hello World"
var b : String = "World Hello"

val a = "Hello World"

修饰符有两种,val(只读变量)和var(可读写变量)。

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-------------------last line for now------------------