为了表示当前的 接收者 我们使用 this{: .keyword } 表达式:
如果 this{: .keyword } 没有限定符,它指的是最内层的包含它的作用域。要引用其他作用域中的 this{: .keyword },请使用 标签限定符:
限定的 this{: .keyword }
要访问来自外部作用域的this{: .keyword }(一个类 或者扩展函数,或者带标签的带接收者的函数字面值)我们使用this@label
,其中 @label
是一个代指 this{: .keyword } 来源的标签:
class A { // 隐式标签 @A inner class B { // 隐式标签 @B fun Int.foo() { // 隐式标签 @foo val a = this@A // A 的 this val b = this@B // B 的 this val c = this // foo() 的接收者,一个 Int val c1 = this@foo // foo() 的接收者,一个 Int val funLit = lambda@ fun String.() { val d = this // funLit 的接收者 } val funLit2 = { s: String -> // foo() 的接收者,因为它包含的 lambda 表达式 // 没有任何接收者 val d1 = this } } } }