Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Clazz {
  2. private final int x;
  3. {
  4. Clazz c = this;
  5. c.x = 42; // The final field Clazz.x cannot be assigned
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement