Kotlin idioms
Tạo một POJO object
data class Customer(val name: String, val email: String)
Tạo một lớp Customer
cùng với các function sau:
getter, setter cho các property
equals()
hashCode()
toString()
copy()
componentN()
cho cácproperty
xem thêm Data class
Giá trị mặc định tham số của function
fun foo(a: Int = 0, b: String = "") { ... }
xem thêm Giá trị mặc định cho parameter
Lọc một list
val positives = list.filter { x -> x > 0 }
hoặc
val positives = list.filter { it > 0 }
String template
val name: String = "tu"
println("Name $name")
xem thêm String
Kiểm tra kiểu
when (x) {
is Foo -> ...
is Bar -> ...
else -> ...
}
Duyệt một map/list theo cặp
for ((k, v) in map) {
println("$k -> $v")
}
k
, v
có thể gọi ở trong vòng lặp
Sử dụng ranges
for (i in 1..100) { ... } //khoảng đóng, i chạy từ 1 đến 100
for (i in 1 until 100) { ... } // khoảng mở một nửa i chạy từ 1 đến 99
for (x in 2..10 step 2) { ... }
for (x in 10 downTo 1) { ... }
if (x in 1..10) { ... }
List/Map chỉ đọc
val list = listOf("a", "b", "c")
val map = mapOf("a" to 1, "b" to 2, "c" to 3)
xem thêm Collection
Khởi tạo lazy
val p: String by lazy {
// compute the string
}
Extension function
fun String.spaceToCamelCase() { ... }
"Convert this to camelcase".spaceToCamelCase()
xem thêm extension function
Tạo một singleton
object Resource {
val name = "Name"
}
Kiểm tra null
// if not null
val files = File("Test").listFiles()
println(files?.size)
// if not null and else
val files = File("Test").listFiles()
println(files?.size ?: "empty
xem thêm Null safety
Chạy một câu lệnh nếu null hoặc không null
//if null
val data = ...
val email = data["email"] ?: throw IllegalStateException("Email is missing!")
//if not null
val data = ...
data?.let {
... // execute this block if not null
}
xem thêm Null safety
Gán giá trị cho một biến nếu null hoặc không null
val data = ...
val mapped = data?.let { transformData(it) } ?: defaultValueIfDataIsNull
Sử dụng when để return
fun transform(color: String): Int {
return when (color) {
"Red" -> 0
"Green" -> 1
"Blue" -> 2
else -> throw IllegalArgumentException("Invalid color param value")
}
}
xem thêm Cấu trúc điều khiển when
Biểu thức try/catch
fun test() {
val result = try {
count()
} catch (e: ArithmeticException) {
throw IllegalStateException(e)
}
// Working with result
}
Biểu thức if
fun foo(param: Int) {
val result = if (param == 1) {
"one"
} else if (param == 2) {
"two"
} else {
"three"
}
}
xem thêm Cấu trúc điều khiển if
Single-expression functions
fun theAnswer() = 42
tương đương với
fun theAnswer(): Int {
return 42
}
Sử dụng cùng với when
:
fun transform(color: String): Int = when (color) {
"Red" -> 0
"Green" -> 1
"Blue" -> 2
else -> throw IllegalArgumentException("Invalid color param value")
}
Gọi nhiều method trên cùng một instance object
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()
}
Last modified: 16 February 2024