Kotlin慣用語法

Kotlin中有很多經常使用慣用語法,如果你有一個最喜歡的慣用語法,那就貢獻它吧。 做一個拉請求。

創建DTO(POJO/POCO)

data class Customer(val name: String, val email: String)

假設Customer類提供以下功能:

  • 所有屬性的gettersetter
  • equals()方法
  • hashCode()方法
  • toString()方法
  • copy()方法
  • 對於所有屬性有component1(), component2(), …(請參閱數據類)

函數參數的默認值

fun foo(a: Int = 0, b: String = "") { ... }

過濾列表

val positives = list.filter { x -> x > 0 }

或者,甚至可以寫得更短一些:

val positives = list.filter { it > 0 }

字符串插值

println("Name $name")

實例檢查

when (x) {
    is Foo -> ...
    is Bar -> ...
    else   -> ...
}

遍歷映射/列表對

for ((k, v) in map) {
    println("$k -> $v")
}

kv可以是任何東西。

使用範圍

for (i in 1..100) { ... }  // closed range: includes 100
for (i in 1 until 100) { ... } // half-open range: does not include 100
for (x in 2..10 step 2) { ... }
for (x in 10 downTo 1) { ... }
if (x in 1..10) { ... }

只讀列表

val list = listOf("a", "b", "c")

只讀映射

val map = mapOf("a" to 1, "b" to 2, "c" to 3)

訪問映射

println(map["key"]) // 打印值
map["key"] = value // 設置值

懶屬性

val p: String by lazy {
    // compute the string
}

擴展函數

fun String.spaceToCamelCase() { ... }

"Convert this to camelcase".spaceToCamelCase()

創建單例

object Resource {
    val name = "Name"
}

如果不爲null的速記

val files = File("Test").listFiles()

println(files?.size)

如果不爲nullelse的速記

val files = File("Test").listFiles()

println(files?.size ?: "empty")

如果爲null,執行語句

val data = ...
val email = data["email"] ?: throw IllegalStateException("Email is missing!")

如果不爲null,執行語句

val data = ...

data?.let {
    ... // execute this block if not null
}

when 語句上返回

fun transform(color: String): Int {
    return when (color) {
        "Red" -> 0
        "Green" -> 1
        "Blue" -> 2
        else -> throw IllegalArgumentException("Invalid color param value")
    }
}

try/catch 表達式

fun test() {
    val result = try {
        count()
    } catch (e: ArithmeticException) {
        throw IllegalStateException(e)
    }

    // Working with result
}

if表達式

fun foo(param: Int) {
    val result = if (param == 1) {
        "one"
    } else if (param == 2) {
        "two"
    } else {
        "three"
    }
}

方法生成器風格的使用返回Unit

fun arrayOfMinusOnes(size: Int): IntArray {
    return IntArray(size).apply { fill(-1) }
}

單表達式函數

fun theAnswer() = 42

這相當於 -

fun theAnswer(): Int {
    return 42
}

這可以與其他慣用語法有效結合,從而代碼更短。 例如,與when-expression結合:

fun transform(color: String): Int = when (color) {
    "Red" -> 0
    "Green" -> 1
    "Blue" -> 2
    else -> throw IllegalArgumentException("Invalid color param value")
}

在對象實例上調用多個方法(‘with’)

class Turtle {
    fun penDown()
    fun penUp()
    fun turn(degrees: Double)
    fun forward(pixels: Double)
}

val myTurtle = Turtle()
with(myTurtle) { //draw a 100 pix square
    penDown()
    for(i in 1..4) {
        forward(100.0)
        turn(90.0)
    }
    penUp()
}

Java 7的try與資源的用法

val stream = Files.newInputStream(Paths.get("/some/file.txt"))
stream.buffered().reader().use { reader ->
    println(reader.readText())
}

需要通用類型信息的通用函數的方便形式

//  public final class Gson {
//     ...
//     public <T> T fromJson(JsonElement json, Class<T> classOfT) throws JsonSyntaxException {
//     ...

inline fun <reified T: Any> Gson.fromJson(json): T = this.fromJson(json, T::class.java)

使用可空的布爾值

val b: Boolean? = ...
if (b == true) {
    ...
} else {
    // `b` is false or null
}