码迷,mamicode.com
首页 > 其他好文 > 详细

初始多态

时间:2017-04-12 04:15:01      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:system   cto   xtend   ack   ons   ati   student   package   blog   

package Li;

public class Person {
String name;



public Person() {
    super();
}



public Person(String name) {
    super();
    this.name = name;
}



public void eat(){
    System.out.println(name+"正在吃面包");
}
}







package Li;

public class Student extends Person {

    public Student(String name) {
        super(name);
    
    }
public void eat(){
    System.out.println(this.name+"正在食堂吃早点");
}
    
    
    
    
}








package Li;

public class Famer extends Person  {

    public Famer(String name) {
        super(name);
        // TODO Auto-generated constructor stub
    }

public void eat(){
    System.out.println("我是农民"+name+"正在吃西瓜");
}
}








package Li;

public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
Person p;
p=new Student("李华");
p.eat();        


p=new Famer("袁隆平");
p.eat();


p=new Person("雷锋");
p.eat();

    }
    }

 

初始多态

标签:system   cto   xtend   ack   ons   ati   student   package   blog   

原文地址:http://www.cnblogs.com/zyy1130/p/6696301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!