在Java對流的讀取是下面的那樣,當前不要忘記流的關閉close。java
// java 代碼
void someFunc(InputStream in, OutputStream out) throws IOException {
int read;
while ((read = in.read()) != -1) {
out.write(read);
}
}
可是在kotlin中等式不是一個表達式,因此不能那樣子寫,kotlin是這樣的使用的,有幾種寫法:
在使用流或者數據庫之類的資源須要關閉close的狀況下,能夠使用use擴展函數來實現自動關閉的操做數據庫
第一種寫法,文藝青年:
經過閉包返回來實現閉包
fun someFunc(`in`: InputStream, output: OutputStream) {
try {
var read: Int = -1
`in`.use { input ->
output.use {
while ({ read = input.read();read }() != -1) {
it.write(read)
}
}
}
} catch (t: Throwable) {
t.printStackTrace()
}
}
第二種寫法,二逼青年:函數
經過正常寫法來實現資源
fun someFunc(`in`: InputStream, output: OutputStream) {
try {
var read: Int = `in`.read()
`in`.use { input ->
output.use {
while (read != -1) {
it.write(read)
read = input.read()
}
}
}
} catch (t: Throwable) {
t.printStackTrace()
}
}
第三種寫法,優秀青年:get
經過使用also擴展函數來實現input
fun someFunc(`in`: InputStream, output: OutputStream) {
try {
var read: Int = -1
`in`.use { input ->
output.use {
while (input.read().also { read = it } != -1) {
it.write(read)
}
}
}
} catch (t: Throwable) {
t.printStackTrace()
}
}
咱們來看一下also函數是什麼樣的:it
also函數,傳入一個拉姆達而且調用,拉姆達的參數是調用also的實例,而後返回實例,很好理解,就是哪一個調用的就返回哪一個,而且將它傳入拉姆達裏面。io
舉個栗子:class
data class User(val name: String, val age: Int)
fun getMain() { val userOut = User("jowan", 25) println(userOut.also { println("also---$it") // 這裏的it表示什麼,同時打印什麼 }) // 這裏會打印什麼}9打印什麼應該猜到了吧!!