...
Code Block | ||
---|---|---|
| ||
private final int a;
private final int b;
void set_ab(int a, int b){ //But now the compiler complains about set_ab method
this.a = a;
this.b = b;
}
|
The problem with this method is that setter methods cannot be used to alter a
and b
.
...