this.aMethod() is the same as just invoking aMethod(). public class MainClass { int i = 0; void aMethod() { this.i = 9; } }