动物园里有很多种动物:
比如说,狗,猫等。
狗有姓名和年龄,猫也有姓名和年龄。
狗有跑步的方法,猫也有跑步的方法。而且都仅仅是跑步。
狗有吃饭的方法,猫也有吃饭的方法。只不过,狗吃骨头,猫吃鱼
- class Animal{
- String name;
- int age;
- public void run(){
- System.out.println("跑步");
- }
- public void eat(){
- System.out.println("吃东西");
- }
- }
- class Cat extends Animal{
- //吃的方法都不同,那么就重写eat方法
- public void eat(){
- System.out.println("猫吃鱼");
- }
- }
- class Dog extends Animal{
- public void eat(){
- System.out.println("狗吃骨头");
- }
- }
复制代码
。
|
|