Advertisement
wingman007

Java - JavaApplication27 Lion.java

Dec 7th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication27;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class Lion extends Animal {
  12.    
  13.     private String sex = "male";
  14.    
  15.     public Lion(String sex){
  16.         super(true);
  17.         this.sex = sex;
  18.     }
  19.    
  20.     @Override
  21.     public String introduceYourSelf(){
  22.         String text;
  23.         text = super.introduceYourSelf();
  24.         return text + " I am a lion! My sex is: " + sex;
  25.     }    
  26.    
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement