This Keyword
This Keyword
The this Reference
public class MyDate {
int day, month, year;
public void tomorrow() {
this.day = this.day + 1;
// wrap around code...
}
}
The this Reference
public class MyDate {
int day, month, year;
public void tomorrow() {
this.day = this.day + 1;
// wrap around code...
}
}