Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication27;
- /**
- *
- * @author fmi
- */
- public class Lion extends Animal {
- private String sex = "male";
- public Lion(String sex){
- super(true);
- this.sex = sex;
- }
- @Override
- public String introduceYourSelf(){
- String text;
- text = super.introduceYourSelf();
- return text + " I am a lion! My sex is: " + sex;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement