Skip to content

Instantly share code, notes, and snippets.

@ProgDan
Created January 25, 2011 22:24
Show Gist options
  • Save ProgDan/795817 to your computer and use it in GitHub Desktop.
Save ProgDan/795817 to your computer and use it in GitHub Desktop.
LP2: Exercícios de Revisão - 11
final class Aaa {
int xxx;
void yyy() {
xxx = 1;
}
}
class Bbb extends Aaa {
final Aaa finalref = new Aaa();
final void yyy() {
System.out.println("In method yyy()");
finalref.xxx = 12345;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment