java string 类 上机_java上机试题

请将下列关键字填写到适当的位置中。newextendsimplementsstaticsuperpublicabstractthisimportpackage(1)Fruits;//声明包语句(2)java.util.*;abstractclassFruit//定义抽象类Fruit{D...

请将下列关键字填写到适当的位置中。

new extends implements static super

public abstract this import package

(1) Fruits;//声明包语句

(2) java.util.*;

abstract class Fruit //定义抽象类Fruit

{

Date produceDate;

double weight;

public Fruit(double weight) {

produceDate = (3) Date();//将produceDate设定为系统当前时间

(4) .weight = weight;//为数据成员weight赋初值

}

public (5) String getInfo();//定义抽象方法

}

interface Edible//定义接口Edible

{final int Edible_HOT = 1;

final int Edible_Cool = 2;

void howToEat(int EatMode);

}

//Apple类是Fruit的派生类并实现Edible接口

class Apple (6) Fruit (7) Edible

{

(8) int count = 0;//count负责记录Fruit对象的数量

String color;

public Apple(double weight,String c)

{

(9) (weight);//调用父类的构造函数

color = c;

count++;

}

(10) String getInfo() //重写抽象类中的抽象方法

{

return "produceDate=" + produceDate + " weight=" + weight + " color=" + color;

}

public void howToEat(int mode) //重写接口中的抽象方法

{

if(mode == Edible.Edible_HOT)

System.out.println("Make apple pine!");

else

System.out.println("Make apple juice!");

}

}

class Test

{

public static void main(String [] args)

{

Apple a = new Apple(0.2,"red");

//显示当前已创建的Apple对象数量

System.out.println("count=" + Apple.count);

System.out.println(a.getInfo());

a.howToEat(Edible.Edible_HOT);

}

}

展开

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值