定义一个抽象类AbsAnimal,要求如下 (1)包括属性name,weight,color; (2)定义其有参构造方法; (3)定义受保护的run方法,功能是打印输出"Animal run fastly"; (4)在main方法里实例化抽象对象a 定义一个类Tiger继承抽象类AbsAnimal,要求如下 (1)在main方法中实例化一个Tiger对象 (2)调用run方法,查看输出结果
时间: 2024-01-17 15:02:53 浏览: 142
C# 抽象类,抽象属性,抽象方法(实例讲解)
5星 · 资源好评率100%
好的,我来解答您的问题。
下面是定义一个抽象类 `AbsAnimal` 的代码:
```java
public abstract class AbsAnimal {
protected String name;
protected double weight;
protected String color;
public AbsAnimal(String name, double weight, String color) {
this.name = name;
this.weight = weight;
this.color = color;
}
protected void run() {
System.out.println("Animal run fastly");
}
}
```
接下来是定义一个继承自 `AbsAnimal` 的 `Tiger` 类的代码:
```java
public class Tiger extends AbsAnimal {
public Tiger(String name, double weight, String color) {
super(name, weight, color);
}
public static void main(String[] args) {
Tiger tiger = new Tiger("Tiger", 100, "Orange");
tiger.run();
}
}
```
在 `Tiger` 类的 `main` 方法中,我们实例化了一个 `Tiger` 对象,并调用了其继承自 `AbsAnimal` 的 `run` 方法,输出了 "Animal run fastly"。
需要注意的是,由于 `AbsAnimal` 类是一个抽象类,不能直接实例化对象,因此我们只能通过继承 `AbsAnimal` 类的子类来实例化对象。
阅读全文