kotlin基礎語法
1. 包定義 package
package my.demo
2. 方法定義 fun
fun sum(a: Int, b: Int): Int {//定義方法的關鍵字fun;方法名sum;變量名a,類型Int;變量名b,類型Int;返回值類型Int
return a + b
}
fun sum(a: Int, b: Int) = a + b //方法體是一個表達式時,返回值類型可自動推斷的寫法
fun printSum(a: Int, b: Int): Unit { //返回一個沒有意義的值,也就是沒有返回值的情況,使用Unit
println("sum of $a and $b is ${a + b}")fun printSum(a: Int, b: Int) { println("sum of $a and $b is ${a + b}") } //Unit可以省略
3. 變量定義
val a: Int = 1 //直接賦值,變量名a,類型Int
val b = 2 // 直接賦值,自動推斷為`Int` 類型
val c: Int // 初始化時沒有賦值,必須指定類型
c = 3 // deferred assignment
4.註釋
//表示當行註釋
/*多行註釋*/
5.字符串模板
var a = 1
val s1 = "a is $a"
a = 2
val s2 = "${ s1.replace("is", "was") }, but now is $a" // 模板裏任意表達式,使用${};輸出結果為a was 1, but now is 2
6.條件表達式
fun maxOf(a: Int, b: Int): Int { if (a > b) { return a } else { return b } }
fun maxOf(a: Int, b: Int) = if (a > b) a else b //方法體是一個表達式,返回值類型自動推斷
7. null空值檢查,如果一個值有可能為空,就要顯示地使用?標記
fun parseInt(str: String): Int? { //返回值有可能為空,使用問號?標記;表示如果str不包含整數返回null
// ...
}
fun printProduct(arg1: String, arg2: String) {
val x = parseInt(arg1)
val y = parseInt(arg2) // Using `x * y` yields error because they may hold nulls.
if (x != null && y != null) { // x and y are automatically cast to non-nullable after null check
println(x * y)
}else {
println("either ‘$arg1‘ or ‘$arg2‘ is not a number") }
}
8. 類型檢查和自動轉換
使用 is 操作符判斷一個對象是不是某個類型的實例
fun getStringLength(obj: Any): Int? {
if (obj is String) { //使用 is 判斷 obj是不是String類型
// 自動轉換為String類型
return obj.length
}
return null // 語句結尾可以不使用分號結束
}
或者
fun getStringLength(obj: Any): Int? {
if (obj !is String){//如果obj不是String類型
return null
}
// `obj` is automatically cast to `String` in this branch
return obj.length
}
或者
fun getStringLength(obj: Any): Int? {
// && 右邊的obj自動轉換為String類型
if (obj is String && obj.length > 0) {
return obj.length
}
return null
}
9. 使用for循環
val items = listOf("apple", "banana", "kiwi")
for (item in items) { //形式 for(each in list){}
println(item)
}
或者
val items = listOf("apple", "banana", "kiwi")
for (index in items.indices) {//items.indices是list的索引列表
println("item at $index is ${items[index]}") //${}字符串模板
}
10. 使用while循環
val items = listOf("apple", "banana", "kiwi")
var index = 0
while (index < items.size) {
println("item at $index is ${items[index]}")
index++
}
11. 使用when表達式(替代switch語句)
fun describe(obj: Any): String =
when (obj) {
1 -> "One"
"Hello" -> "Greeting"
is Long -> "Long"
!is String -> "Not a string"
else -> "Unknown"
}
//調用describe這個方法,就會根據參數的不同返回String類型的不同值
12. 使用範圍 in 關鍵字
使用 in 判斷一個數是否在某個範圍內
val x = 10
val y = 9
if (x in 1..y+1) { //範圍形式(小端..大端);x是否在1到10(y+1)之間;結果是在的
println("fits in range")
}
檢查一個數是否在超出範圍:
val list = listOf("a", "b", "c")
if (-1 !in 0..list.lastIndex) { //-1是否 不在 0到list的長度;結果是不在的
println("-1 is out of range")
}
if (list.size !in list.indices) { //list.size 是否 不在 list索引內;結果是不在的
println("list size is out of valid list indices range too")
}
叠代一個範圍:
for (x in 1..5) {
print(x)
} //輸出結果為:12345
叠代一個範圍,添加步長
for (x in 1..10 step 2) {//步長為2
print(x)
}//輸出:13579
for (x in 9 downTo 0 step 3) {
print(x)
}//輸出9630
13. 使用集合
叠代一個集合:
for (item in items) {
println(item)
}
使用in操作符檢查一個集合是否包含某個對象
when {
"orange" in items -> println("juicy")
"apple" in items -> println("apple is fine too")
}
使用lambda表達式過濾和映射集合
fruits .filter { it.startsWith("a") } //過濾出以a開頭的
.sortedBy { it } //排序
.map { it.toUpperCase() } //轉為大寫
.forEach { println(it) } //遍歷輸出,註意:it是集合本身自帶的默認的變量名稱
使用filter過濾一個list的item為正數
val positives = list.filter { x -> x > 0 }
或者val positives = list.filter { it > 0 }
kotlin基礎語法