Java继承(下)练习3-5,烦请老师检查并指正~

Java继承(下)练习3-5,烦请老师检查并指正~

老师为什么我的代码从Eclipse粘贴到在线编辑器里又运行失败了?

相关截图:在线编辑器运行失败提示

https://img1.sycdn.imooc.com//climg/613a36c8090c912117681118.jpg

相关代码:以下是在Eclipse中运行成功的代码

父类:Fruits
package com.imooc.object.exercise3_5;

public class Fruits {
// 私有属性:水果的形状(shape)和口感(taste)

private String shape;
private String taste;

public Fruits() {

}

// 带参构造函数(参数为shape和taste)
public Fruits(String shape, String taste) {
this.setShape(shape);
this.setTaste(taste);
}

// 通过封装实现对私有属性的get/set访问
public String getShape() {
return shape;
}

public void setShape(String shape) {
this.shape = shape;
}

public String getTaste() {
return taste;
}

public void setTaste(String taste) {
this.taste = taste;
}

// 创建无参无返回值得方法eat(描述内容为:水果可供人们食用!)
public void eat() {
System.out.println("水果可供人们食用!");
}

// 重写equals方法,比较两个对象是否相等(比较shape,taste)
public boolean equals(Fruits obj) {
if(obj == null) {
return false;
}
if(this.getShape().equals(obj.getShape())&&(this.getTaste().equals(obj.getTaste()))) {
return true;
}else {
return false;
}
}

}
不能被继承的子类:Waxberry
package com.imooc.object.exercise3_5;

public final class Waxberry extends Fruits {
// 私有属性:颜色(color)
private String color;

// 创建构造方法,完成调用父类的构造方法,完成属性赋值
public Waxberry() {

}

public Waxberry(String shape, String taste, String color) {
super(shape, taste);
this.setColor(color);

}
// 通过封装实现对私有属性的get/set访问

public String getColor() {
return color;
}

public void setColor(String color) {
this.color = color;
}

// 创建不允许重写的face方法,描述为:杨梅:**、**,果味酸甜适中
public final String face() {
String str = "杨梅:" + this.getShape() + "," + this.getColor() + ",果味酸甜适中";
return str;
}

// 重写父类eat方法,描述为:杨梅酸甜适中,非常好吃!
public void eat() {
System.out.println("杨梅酸甜适中,非常好吃!");
}

// 重写toString方法,输出的表现形式不同(输出shape,color,taste)
@Override
public String toString() {
return "Waxberry [shape = " + this.getShape() + ",color=" + color + ",taste = " + this.getTaste() + "]";
}

}
子类:Banana
package com.imooc.object.exercise3_5;

public class Banana extends Fruits {
// 私有属性:品种(variety)
private String variety;
// 创建带参构造方法为所有属性赋值
public Banana() {

}
public Banana(String shape, String taste, String variety) {
super(shape, taste);
this.setVariety(variety);
}
// 通过封装实现对私有属性的get/set访问
public String getVariety() {
return variety;
}
public void setVariety(String variety) {
this.variety = variety;
}

// 创建无参无返回值的advantage方法,描述为:**果形**,果肉香甜,可供生食。
public void advantage() {
String str = this.getVariety() + "果形" + this.getShape() + ",果肉" + this.getTaste()+ ",可供生食。";
System.out.println(str);
}
// 创建重载advantage方法(带参数color),描述为:**颜色为**
public void advantage(String color) {
String str = this.getVariety() + "颜色为" + color;
System.out.println(str);
}
}

测试类:
​package com.imooc.object.exercise3_5;

public class TestFruits {
public static void main(String[] args) {
// 实例化2个父类对象,传入两组相同的参数值
Fruits fru1 = new Fruits("Circle", "Sweet");
Fruits fru2 = new Fruits("Circle", "Sweet");
// 调用父类eat方法
fru1.eat();
// 测试重写equals方法,判断两个对象是否相等
System.out.println("fru1和fru2的引用比较:" + fru1.equals(fru2));
System.out.println("————————————————————————————————————————");
// 实例化子类对象,并传入相关参数值
Waxberry wb = new Waxberry("紫红色", "酸甜适中", "圆形");
// 调用子类face方法和eat方法
System.out.println(wb.face());
wb.eat();
// 测试重写toString方法,输出子类对象的信息
System.out.println(wb.toString());
System.out.println("——————————————————————————————————————————————");
// 实例化Banana类对象,并传入相关参数值
Banana ba = new Banana("短而稍圆", "香甜", "仙人蕉");
// 调用子类的advantage和它的重载方法
ba.advantage();
ba.advantage("黄色");
}
}


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

2回答
好帮手慕小脸 2021-09-10 11:33:20

同学你好,

1、测试运行上述贴出代码是正确的,棒棒的~继续加油~

2、1)代码复制到在线编辑器时,类名要遵循编译器上的类名才可以,例如:Test

2)无需添加导包的代码 ,按照上述步骤测试也是可以的,如下:

https://img1.sycdn.imooc.com//climg/613ad1f9096be3b404560338.jpg

祝学习愉快~

  • 提问者 Heijyu #1

    好的,谢谢老师!!!是我粗心了~

    2021-09-10 18:08:37
Heijyu 提问者 2021-09-10 00:33:28

Eclipse运行结果截图:

https://img1.sycdn.imooc.com//climg/613a375509017afe15481236.jpg

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师