Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class Fruit {}
  2. public class Orange extends Fruit {}
  3. public class Apple extends Fruit {}
  4.  
  5. Fruit f = new Apple();
  6. boolean isOrange = f instanceof Orange; //False
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement