水果机(java实现)java多态性

该博客展示了如何使用Java实现一个多态性的水果机程序。通过抽象类afruit、接口bfuit以及apple和pear子类,实现了不同水果的eat()方法。fruit类中利用随机数决定返回哪种水果实例,并调用其eat()方法进行展示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

import java.util.Random;
class afruit {
String  colour;

void eat() {

}

}

//abstract class afruit {
// String  colour;
//
// //abstract void show();
//
// void eat(){
//
// System.out.println("afruit.eat()");
// }
//
//}

interface  bfruit {
String colour = "bule";
void eat();


}

class cfruit extends afruit implements bfruit {
@Override
public void eat() {
// TODO Auto-generated method stub
System.out.println("cfruit.eat()");
System.out.println("bfruit.eat");

}

}

class apple extends afruit {

void eat(){
colour = "red";
System.out.println("apple.eat()");
System.out.println(colour);
}
}
class pear extends afruit {

void eat() {
colour = "greend";
System.out.println("pear.eat()");
System.out.println(colour);
}
}

public class fruit {

static afruit eat(){
Random rand = new Random();
int x = rand.nextInt() % 3;

switch (x) {
case 0:
return new apple();
case 1:
return new cfruit();
default:
return new pear();
}
}

static void show(afruit a) {
a.eat();
}

public static void main(String[] args) {

// afruit a = new apple();
afruit a = eat();

show(a);
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值