this
static
예:
class Foo { void bar() {} void foo() { bar(); } }
빠른 수정을 적용한 후:
class Foo { void bar() {} void foo() { this.bar(); } }