Guest User

Untitled

a guest
May 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Emily extends Person{}
  2.  
  3. public void checkgender(Person p){
  4. system.out.println("Is Male: " + Boolean.parseBoolean(isMale));
  5. }
  6.  
  7. //Test
  8.  
  9. checkgender(EmilySkype.GetEmily());
  10.  
  11. //output
  12. Is Male: True
Add Comment
Please, Sign In to add comment