zoukankan      html  css  js  c++  java
  • Kotlin学习笔记(2):run、apply、let、also、with的用法和区别

    runapplyletalsowith 五个函数均位于 kotlin 包下的 Standard 文件中,其含义和用法比较相似,现分别介绍如下。

    run

    用法1

    函数定义:

    public inline fun <R> run(block: () -> R): R = block()
    

    功能:调用run函数块。返回值为函数块最后一行,或者指定return表达式。

    示例:

    val a = run {
    	println("run")
    	return@run 3
    }
    println(a)
    

    运行结果:

    run
    3
    

    用法2

    函数定义:

    public inline fun <T, R> T.run(block: T.() -> R): R = block()
    

    功能:调用某对象的run函数,在函数块内可以通过 this 指代该对象。返回值为函数块的最后一行或指定return表达式。

    示例:

    val a = "string".run {
    	println(this)
    	3
    }
    println(a)
    

    运行结果:

    string
    3
    

    apply

    函数定义:

    public inline fun <T> T.apply(block: T.() -> Unit): T { block(); return this }
    

    功能:调用某对象的apply函数,在函数块内可以通过 this 指代该对象。返回值为该对象自己。

    示例:

    val a = "string".apply {
    	println(this)
    }
    println(a)
    

    运行结果:

    string
    string
    

    let

    函数定义:

    public inline fun <T, R> T.let(block: (T) -> R): R = block(this)
    

    功能:调用某对象的let函数,则该对象为函数的参数。在函数块内可以通过 it 指代该对象。返回值为函数块的最后一行或指定return表达式。

    示例:

    val a = "string".let {
    	println(it)
    	3
    }
    println(a)
    

    运行结果:

    string
    3
    

    also

    函数定义(Kotlin1.1新增的):

    public inline fun <T> T.also(block: (T) -> Unit): T { block(this); return this }
    

    功能:调用某对象的also函数,则该对象为函数的参数。在函数块内可以通过 it 指代该对象。返回值为该对象自己。

    示例:

    val a = "string".also {
    	println(it)
    }
    println(a)
    

    运行结果:

    string
    string
    

    with

    函数定义:

    public inline fun <T, R> with(receiver: T, block: T.() -> R): R = receiver.block()
    

    功能:with函数和前面的几个函数使用方式略有不同,因为它不是以扩展的形式存在的。它是将某对象作为函数的参数,在函数块内可以通过 this 指代该对象。返回值为函数块的最后一行或指定return表达式。

    示例:

    val a = with("string") {
    	println(this)
    	3
    }
    println(a)
    

    运行结果:

    string
    3
    

    参考资料

    [What's New in Kotlin 1.1 - also(), takeIf() and takeUnless()](https://kotlinlang.org/docs/reference/whatsnew11.html#also-takeif-and-takeunless)

  • 相关阅读:
    样本间相似度/距离的计算方法总结
    package.json字段全解
    使用Charles对Https请求进行抓包
    URI和URL的区别
    webstorm常用快捷键
    HTML中判断手机是否安装某APP,跳转或下载该应用
    Git 常用命令大全
    vue的测试(Vue.js devtool)
    js求两个数的最大公约数
    javascript实现验证身份证号的有效性并提示
  • 原文地址:https://www.cnblogs.com/duduhuo/p/6934137.html
Copyright © 2011-2022 走看看