Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
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.

...