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