黑马程序员技术交流社区

标题: 小练习 [打印本页]

作者: め白衬衫    时间: 2014-10-16 11:19
标题: 小练习
题目:
    1.  狗有姓名和年龄,猫也有姓名和年龄。
    2. 狗有跑步的方法,猫也有跑步的方法。而且都仅仅是跑步。
    3. 狗有吃饭的方法,猫也有吃饭的方法。只不过,狗吃骨头,猫吃鱼。
请用所学知识,对这个问题进行解决。


作者: め白衬衫    时间: 2014-10-16 11:20
  1. package com.itcast.test3_2;
  2. abstract class Animal{
  3.         String name;
  4.         int age;
  5.         void run(){
  6.                 System.out.println("run()");
  7.         }
  8.         abstract void eat();
  9. }
  10. class Dog extends Animal{
  11.         //重写父类的抽象方法
  12.         void eat(){
  13.                 System.out.println("吃骨头");
  14.         }
  15. }
  16. class Cat extends Animal{
  17.         //重写父类的抽象方法
  18.         void eat(){
  19.                 System.out.println("吃鱼");
  20.         }
  21. }
  22. public class Demo {

  23.         public static void main(String[] args) {
  24.                

  25.         }

  26. }
复制代码





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