this
static
示例:
class Foo { void bar() {} void foo() { bar(); } }
在应用快速修复后:
class Foo { void bar() {} void foo() { this.bar(); } }