A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© MichaelLian 中级黑马   /  2016-4-14 23:31  /  262 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. class Test_PloymorphicAbstractInterface {
  2.         public static void main(String[] args) {
  3. //创建子类C的对象;
  4.                 WolfMan wm=new WolfMan("Miky",25,180);
  5.                 wm.speed();
  6.                 System.out.println(wm.getName()+"---"+wm.getAge()+"---"+wm.getHigh());
  7. //父类引用B指向子类C对象;
  8.                 Michael m=new WolfMan("BaBaRo",26,175);
  9.                 m.sleep();
  10.                 m.eat();
  11.                 System.out.println(m.getName()+"---"+m.getAge()+"---"+m.getHigh());
  12.         }
  13. }
  14. //抽象类A,集合了共性功能;
  15. abstract class Person{
  16.         private String name;
  17.         private int age;
  18.         private int high;

  19.         public Person(){}
  20.         public Person(String name,int age,int high){
  21.                 this.name=name;
  22.                 this.age=age;
  23.                 this.high=high;
  24.         }

  25.         public void setName(String name){
  26.                 this.name=name;
  27.         }
  28.         public String getName(){
  29.                 return name;
  30.         }

  31.         public void setAge(int age){
  32.                 this.age=age;
  33.         }
  34.         public int getAge(){
  35.                 return age;
  36.         }

  37.         public void setHigh(int high){
  38.                 this.high=high;
  39.         }
  40.         public int getHigh(){
  41.                 return high;
  42.         }

  43.         public void show(){
  44.                 System.out.println("NameIs"+name+"---"+"AgeIs"+age+"---"+"HighIs"+high);
  45.         }

  46.         public abstract void sleep();

  47.         public abstract void eat();
  48. }
  49. //接口,集合了扩展功能;
  50. interface Inter{
  51.         public abstract void speed();
  52. }
  53. //类A继承抽象类A,重写A的抽象方法;
  54. class Michael extends Person{
  55.         public Michael(){}
  56.         public Michael(String name,int age,int high){
  57.                 super(name,age,high);
  58.         }

  59.         public void sleep(){
  60.                 System.out.println("NeverSleep");
  61.         }
  62.        
  63.         public void eat(){
  64.                 System.out.println("DrinkAnimal'sBlood");
  65.         }
  66. }
  67. //类C继承类B,类实现接口Inter;
  68. class WolfMan extends Michael implements Inter{
  69.         public WolfMan(){}
  70.         public WolfMan(String name,int age,int high){
  71.                 super(name,age,high);
  72.         }

  73.         public void speed(){
  74.                 System.out.println("SpeedIsVeryFast");
  75.         }
  76. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马