-->
当前位置:首页 > 题库 > 正文内容

函数题:Animal接口

Luz2年前 (2022-11-03)题库1278
已知有如下Animal抽象类和IAbility接口,请编写Animal子类Dog类与Cat类,并分别实现IAbility接口,另外再编写一个模拟器类Simulator调用IAbility接口方法,具体要求如下。

### 已有的Animal抽象类定义:
java
abstract class Animal{
private String name; //名字
private int age; //年龄

public Animal(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}

### 已有的IAbility接口定义:
java
interface IAbility{
void showInfo(); //输出动物信息
void cry(); //动物发出叫声
}


### 需要你编写的Dog子类:

实现IAbility接口

showInfo方法输出Dog的name、age,输出格式样例为:我是一只狗,我的名字是Mike,今年2岁(注意:输出结果中没有空格,逗号为英文标点符号)

cry方法输出Dog 的叫声,输出格式样例为:旺旺


### 需要你编写的Cat子类:
实现IAbility接口

showInfo方法输出Cat的name、age,输出格式样例为:我是一只猫,我的名字是Anna,今年4岁(注意:输出结果中没有空格,逗号为英文标点符号)

cry方法输出Cat 的叫声,输出格式样例为:喵喵


### 需要你编写的模拟器类Simulator:
void playSound(IAbility animal):调用实现了IAbility接口类的showInfo和cry方法,并显示传入动物的名字和年龄

### 已有的Main类定义:
java
public class Main {

public static void main(String[] args) {
Scanner input=new Scanner(System.in);
IAbility animal=null;
int type=input.nextInt();
String name=input.next();
int age=input.nextInt();
if (type==1)
animal=new Dog(name,age);
else
animal=new Cat(name,age);

Simulator sim=new Simulator();
sim.playSound(animal);
input.close();
}
}

/***请在这里填写你编写的Dog类、Cat类和Simulator类** */


### 输入样例:
(本题的评分点与输入样例无关)

第一个整数代表动物类型,1为狗类,2为猫类

in
1 Mike 2


### 输出样例:

out
我是一只狗,我的名字是Mike,今年2岁
旺旺
Mike
2







答案:若无答案欢迎评论

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。