黑马程序员技术交流社区

标题: 多态问题一 [打印本页]

作者: 从不闪躲    时间: 2014-9-22 21:30
标题: 多态问题一
class Demo8Extends
{
public static void main(String[] args)
{
  Dog dog = new Dog();
}
}
class Animal
{
String name = "我是一只动物";
public Animal(){}
public Animal(String name){
  this.name = name;
  System.out.println("父类构造方法");
}
public void eat(){
  System.out.println("吃了");
}
}
class Dog extends Animal
{
public Dog(){
  //super("洪志");
  System.out.println("子类构造方法");
}
public void eat(){
  System.out.println("喵吃了");
}
public void eat(String food){
  System.out.println("喵吃了"+food);
}
public void show(){
  System.out.println("show!");
}
}

作者: 霜林醉zhx    时间: 2014-9-22 23:10
完全不知道要表达的是什么,而且,代码一点层次感都没有,看都不想看
作者: 苏乞儿    时间: 2014-9-22 23:43
童鞋,可以用代码编辑器的。。。。是很乱啊。。。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2