Kotlin Reference: Control Flow
If Expression Kotlin 中的 if 是一个表达式,具有返回值。Kotlin 中没有三元操作符(condition ? then : else),因为 if 完全可以胜任这个角色。 [code lang=”kotlin”]// Traditional usage var max = a if (a < b) max = b // With else…
Read more
learn, build, evaluate
If Expression Kotlin 中的 if 是一个表达式,具有返回值。Kotlin 中没有三元操作符(condition ? then : else),因为 if 完全可以胜任这个角色。 [code lang=”kotlin”]// Traditional usage var max = a if (a < b) max = b // With else…
Read more
可以在源文件的开头进行包声明: [code lang=”kotlin”]package foo.bar fun baz() {} class Goo {} // …[/code] 源文件中的全部内容(如类和函数)都包含在所声明的包中。在上面的例子中,函数 baz() 的全名为 foo.bar.baz,类 Goo 的全名为 foo.bar.Goo。 如…
Read more