Kotlin的特性
Posted lshare
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin的特性相关的知识,希望对你有一定的参考价值。
- time
- streams
- try-with-resources
- 函数扩展,给types、classes或者interfaces新增方法
- null safe
- 不需要new,后缀声明类型
- 自动转换有getters和setters综合属性的类型,例如自动替换getDay()为day,看起来像个field,但实际上是property-getter和setter的概念的融合
- 函数表达式lambdas,it:单个参数的隐式名称
- Higher-order函数,一个参数式函数或者返回时函数的函数
- 扩展函数表达式 = 扩展函数 + 函数表达式 + 高阶函数
fun SQLiteDatabase.inTransaction(func: (SQLiteDatabase) -> Unit)
beginTransaction()
try
func(this)
setTransactionSuccessful()
finally
endTransaction()
db.inTransaction
it.db.delete("users", "first_name = ?", arrayOf("Jake"))
- in-line函数
- Anko 定义UI
以上是关于Kotlin的特性的主要内容,如果未能解决你的问题,请参考以下文章