Kotlin高阶函数with,use使用

高阶函数是将函数用作参数或返回值的函数。

中文官方文档

创建一个hello.txt文件

import java.io.BufferedReader
import java.io.FileReader

fun main(args: Array<String>) {
    ioWith()
    ioReadText()
    ioUse()
}

fun ioUse() {
    BufferedReader(FileReader("hello.json")).use {
        var line: String?
        while (true) {
            line = it.readLine() ?: break
            println(line)
        }
    }
}

fun ioReadText() {
    val text = BufferedReader(FileReader("hello.json")).readText()
    println(text)

}

fun ioWith() {
    val bufferedReader = BufferedReader(FileReader("hello.txt"))
    with(bufferedReader) {
        var line: String?
        while (true) {
            line = readLine() ?: break
            println(line)
        }
        close()
    }
}

拓展函数

val Float.dp
    get() = TypedValue.applyDimension(
        TypedValue.COMPLEX_UNIT_DIP,
        this,
        Resources.getSystem().displayMetrics
    )
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容