java程序题:定义一个抽象类-水果,其中包括getWeight()方法,编写程序分别创建苹果、

定义一个抽象类-水果,其中包括getWeight()方法,编写程序分别创建苹果、桃子、橘子三个类,创建若干水果对象存放在一个水果类型的数组中,输出数组中所有水果的类型、重... 定义一个抽象类-水果,其中包括getWeight()方法,编写程序分别创建苹果、桃子、橘子三个类,创建若干水果对象存放在一个水果类型的数组中,输出数组中所有水果的类型、重量。提示:利用对象的getClass().getName()方法可获取对象的所属类的名称。 展开
 我来答
匿名用户
推荐于2017-06-16
展开全部

水果类

abstract public class Fruit {
abstract public double getWeight();
}


苹果类

public class Apple extends Fruit {
private double weight;

public Apple(double weight) {
this.weight = weight;
}

@Override
public double getWeight() {
return weight;
}

}


橘子类


public class Orange extends Fruit {
private double weight;

public Orange(double weight) {
this.weight = weight;
}

@Override
public double getWeight() {
return weight;
}

}


桃子类

public class Peach extends Fruit {
private double weight;

public Peach(double weight) {
this.weight = weight;
}

@Override
public double getWeight() {
return weight;
}
}


主类

public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Fruit[] fruits = { new Peach(12), new Apple(2), new Orange(5) };
for (Fruit fruit : fruits) {
System.out.println(fruit.getClass().getName() + "的重量是"
+ fruit.getWeight());
}
}
}

 

运行结果

Peach的重量是 12.0

Apple的重量是 2.0

Orange的重量是 5.0

百度网友3b4b748
2017-06-16 · TA获得超过1059个赞
知道小有建树答主
回答量:760
采纳率:63%
帮助的人:274万
展开全部
abstract class Fruit {
    public Fruit() {
    }

    abstract float getWeight();

    @Override
    public String toString() {
        return "[name=" + this.getClass().getName() + ",weight=" + getWeight() + "]";
    }
}
class Apple extends Fruit{
    @Override
    float getWeight() {
        return 1;
    }
}
class Orange extends Fruit {
    @Override
    float getWeight() {
        return 2;
    }
}
public static void main(String[] args) {
        Fruit[] fruits = { new Apple(), new Orange() };
        for (Fruit fruit : fruits) {
            System.out.println(fruit.toString());
        }
    }
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ly511622
2015-10-09 · 超过22用户采纳过TA的回答
知道答主
回答量:126
采纳率:0%
帮助的人:73.8万
展开全部
//是这样吗?
public class Test {
public static void main(String[] args) {
Fruit[] fruits = new Fruit[6];
Apple apple1 = new Apple(2);
Peach peach2 = new Peach(1);
Tangerine tangerine3 = new Tangerine(3);
Apple apple4 = new Apple(4);
Peach peach5 = new Peach(6);
Tangerine tangerine6 = new Tangerine(5);
fruits[0] = apple1;
fruits[1] = peach2;
fruits[2] = tangerine3;
fruits[3] = apple4;
fruits[4] = peach5;
fruits[5] = tangerine6;
for(Fruit fruit : fruits) {
System.out.println(fruit.getClass().getName() + "," + fruit.getWeight());
}
}
}
abstract class Fruit {
int weight;
int getWeight() {
return weight;
}
}
class Apple extends Fruit{
public Apple(int weight) {
this.weight = weight;
}
}
class Peach extends Fruit{
public Peach(int weight) {
this.weight = weight;
}
}
class Tangerine extends Fruit{
public Tangerine(int weight) {
this.weight = weight;
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式