Kotlin标准库函数 ② ( run 标准库函数 | run 函数传入 Lambda 表达式作为参数 | run 函数传入函数引用作为参数 )
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin标准库函数 ② ( run 标准库函数 | run 函数传入 Lambda 表达式作为参数 | run 函数传入函数引用作为参数 )相关的知识,希望对你有一定的参考价值。
文章目录
Kotlin 语言中 , 在 Standard.kt 源码中 , 为所有类型定义了一批标准库函数 , 所有的 Kotlin 类型都可以调用这些函数 ;
一、run 标准库函数
1、run 函数传入 Lambda 表达式作为参数
run 标准库函数原型如下 :
/**
* 调用以' this '值为接收者的指定函数[block],并返回结果。
*
* 有关详细使用信息,请参阅[scope functions]的文档(https://kotlinlang.org/docs/reference/scope-functions.html#run)。
*/
@kotlin.internal.InlineOnly
public inline fun <T, R> T.run(block: T.() -> R): R
contract
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
return block()
run 函数 传入 T.() -> R 类型 的 Lambda 表达式 作为参数 ,
该 run 函数的 返回值 就是 Lambda 表达式 的返回值 ;
代码示例 : 在下面的代码中 ,
run 函数的 Lambda 表达式参数 返回的是 boolean 类型的 true 值 ,
该值就是最终 run 函数的返回值 ;
fun main()
val ret = "Hello".run
true
println(ret)
执行结果 :
true
2、run 函数传入函数引用作为参数
在上述函数原型中 :
public inline fun <T, R> T.run(block: T.() -> R): R
run 函数 , 传入 T.() -> R 类型 的 函数参数 ,
此处也可以传入 函数引用 ;
利用 run 函数的该用法 , 可以进行链式调用 ;
代码示例 : 在下面的代码中 ,
"hello".run(::hasO)
代码 等价于 hasO("hello")
代码 ;
"hello".run(::hasO).run(::log)
代码 等价于 log(hasO("hello"))
代码 ;
"hello".run(::hasO).run(::log).run(::println)
代码 等价于 println(log(hasO("hello")))
代码 ;
前者是链式调用代码 , 后者是正常的函数调用方式 ;
fun main()
"hello"
.run(::hasO)
.run(::log)
.run(::println)
fun hasO(name: String): Boolean
return name.contains("o")
fun log(hasO: Boolean): String
if (hasO)
return "name has o"
else
return "name doesn't has o"
执行结果 :
name has o
以上是关于Kotlin标准库函数 ② ( run 标准库函数 | run 函数传入 Lambda 表达式作为参数 | run 函数传入函数引用作为参数 )的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin标准库函数总结 ( apply 函数 | let 函数 | run 函数 | with 函数 | also 函数 | takeIf 函数 | takeUnless 函数 )
Kotlin标准库函数 ③ ( with 标准库函数 | also 标准库函数 )
Kotlin标准库函数 ① ( apply 标准库函数 | let 标准库函数 )
Kotlin标准库函数 ④ ( takeIf 标准库函数 | takeUnless 标准库函数 )