Advertisement
Guest User

Untitled

a guest
May 24th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /**
  2. * É um elfo noturno mas não ganha mais 3x de EXP e não perde 5% de vida ao atirar uma flecha;
  3. */
  4. public static void main(String[] args){
  5. ElfoNoturno elfoDaNight = new ElfoNoturno();
  6. Elfo elfo = elfoDaNight; // motherfucking upcast
  7. }
  8. // DownCast
  9. Elfo elfo = new elfoNoturno();
  10. ElfoNoturno noturno = (ElfoNoturno)elfo;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement