Skip to content

Latest commit

 

History

History
225 lines (183 loc) · 3.59 KB

Idioms.md

File metadata and controls

225 lines (183 loc) · 3.59 KB

##习惯用语

这里是一些在kotlin中随机但经常使用的习语。如果你有特别喜欢的习语想要贡献出来,赶快发起 pull request 吧。

###创建DTO's(POJO's/POCO's)

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

给 Customer 类提供如下方法:

--为所有属性添加 getters ,如果是类为 var 类型同时添加 setters --equals() --haseCode() --toString() --copy() --component1() , component1() , ... 参看数据类

###函数默认值

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

###过滤 list

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

或者更短:

val positives = list.filter { it > 0 }

###字符串插值

println( "Name $name" )

###实例检查

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

###遍历 map/list

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

k,v 可以随便命名

###使用 ranges

for (i in 1..100) { ... }
for (i in 2..10) { ... }

###只读 list

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

###只读map

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

###获取map中的值

println(map["key"])
map["key"] = value

###懒属性(延迟加载)

val p: String by lazy {

}

###扩展函数

fun String.spcaceToCamelCase() { ... }
"Convert this to camelcase".spcaceToCamelCase()

###创建单例模式

object Resource {
	val name = "Name"
}

###如果为空则... 的简写

val files = File("Test").listFiles()
println(files?.size)

###如果为空...否则... 的简写

 val files = File("test").listFiles()
println(files?.size ?: "empty")

###如果声明为空执行某操作

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

###如果不为空执行某操作

val date = ...
data?.let{
	...//如果不为空执行该语句块
}

###返回 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 IllegaStateException(e)
	}
	//处理 result
}

if 表达式

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

###方法使用生成器模式返回 Unit

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

###只有一个表达式的函数

fun theAnswer() = 42

与下面的语句是等效的

fun theAnswer(): Int {
	return 42
}

这个可以和其它习惯用语组合成高效简洁的代码。譬如说 when 表达式:

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’s try with resources

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