Skip to content

this 표현식

현재 _수신자_를 가리키기 위해 this 표현식을 사용합니다:

this에 한정자가 없는 경우, 가장 안쪽의 둘러싸는 스코프를 참조합니다. 다른 스코프에서 this를 참조하려면 _레이블 한정자_를 사용합니다:

한정자 있는 this

바깥 스코프(클래스, 확장 함수, 또는 레이블이 지정된 수신자 있는 함수 리터럴)에서 this에 접근하려면 this@label을 작성합니다. 여기서 @labelthis가 참조하려는 스코프의 레이블입니다:

kotlin
class A { // implicit label @A
    inner class B { // implicit label @B
        fun Int.foo() { // implicit label @foo
            val a = this@A // A's this
            val b = this@B // B's this

            val c = this // foo()'s receiver, an Int
            val c1 = this@foo // foo()'s receiver, an Int

            val funLit = lambda@ fun String.() {
                val d = this // funLit's receiver, a String
            }

            val funLit2 = { s: String ->
                // foo()'s receiver, since enclosing lambda expression
                // doesn't have any receiver
                val d1 = this
            }
        }
    }
}

암시적 this

this의 멤버 함수를 호출할 때, this. 부분을 생략할 수 있습니다. 동일한 이름의 비멤버 함수가 있는 경우, 주의해서 사용해야 합니다. 특정 경우에는 대신 호출될 수 있기 때문입니다:

kotlin
fun main() {
    fun printLine() { println("Local function") }
    
    class A {
        fun printLine() { println("Member function") }

        fun invokePrintLine(omitThis: Boolean = false) {
            if (omitThis) printLine()
            else this.printLine()
        }
    }
    
    A().invokePrintLine() // Member function
    A().invokePrintLine(omitThis = true) // Local function
}