文章目录
- 原理解析
- 应用场景
- 为什么使用 `also`?
also
是 Kotlin 标准库中的一个内置函数,其原理和应用场景可以通过源码和示例来解释。
原理解析
also
的定义如下:
/*** Calls the specified function [block] with `this` value as its argument and returns `this` value.** For detailed usage information see the documentation for [scope functions](https://kotlinlang.org/docs/reference/scope-functions.html#also).*/
@kotlin.internal.InlineOnly
@SinceKotlin("1.1")
public inline