码迷,mamicode.com
首页 > 其他好文 > 详细

kotlin学习笔记2

时间:2017-11-20 17:48:55      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:list   功能   row   short   fun   puts   one   clu   方法   

Idioms

创建JavaBean(DTO,POJO etc)

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

data class 自动提供了

  • getter(setter for vals)

  • equals, hashCode, toString, copy, componentX方法

函数参数的默认值

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

filter a list

val positives = list.filter { x -> x>0} // 过滤出大于零的值,另外,这种语法类似于ruby

// shorter
val positives_1 = list.filter { it > 0 }

Instance check

// 对了,when实际上实现了switch的功能
when (x) {
is Foo -> ...
is Bar -> ...
else -> ...
}

key-value遍历map

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

range

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)

惰性求值

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

函数扩展

fun String.spaceToCamelCase() { ... }

"Convert this to camelcase".spaceToCamelCase()

单例

object Resource { // 和scala语法一致
val name = "Name"
}

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()
}

resource

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

泛型

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

inline fun Gson.fromJson(json: JsonElement): T = this.fromJson(json, T::class.java)

kotlin学习笔记2

标签:list   功能   row   short   fun   puts   one   clu   方法   

原文地址:http://www.cnblogs.com/alchimistin/p/7867080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!