确实是汉化了,在还没上课前就汉化了,所以就没改,运行出来结果是正常的
package com.imooc.animal;
/**
* 宠物猫类
* @author imooc
*
*/
public class Cat3 {
private String name;//昵称 Sring类型默认值null
private int month;//年龄 int类型默认值0
private double weight;//体重 double类型默认值0.0
private String species;//品种
public Cat3() {
}
public Cat3(int month) {
this.setMonth(month);
}
public void setName(String name) {
this.name=name;
}
public String getName() {
return "我是一只名叫"+this.name+"的猫咪";
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
if(month<=0)
System.out.println("输入信息错误,宠物猫的年龄必须大于0");
else
this.month = month;
}
public double getWeight() {
return weight;
}
public void setWeight(double weight) {
this.weight = weight;
}
public String getSpecies() {
return species;
}
public void setSpecies(String species) {
this.species = species;
}
public void run() {
eat();
System.out.println("小猫快跑");
}
public void run(String name) {
System.out.println(name+"快跑");
}
public void eat() {
System.out.println("小猫吃鱼");
}
}
package com.imooc.animal;
public class CatTest3{
public static void main(String[] args) {
Cat3 one=new Cat3(3);
if(one.getMonth()==0)
return;
System.out.println("年龄:"+one.getMonth());
}
}
2020-03-11 19:02:13
同学你好,测试了你的代码,并没有出现任何提示,这里应该是说,你的程序在运行时你修改了代码。给你的提示,你可以把所有在运行的程序关掉后,重新运行,看看是否还会弹框呢?如果我的回答解决了你的问题,请采纳,祝学习愉快.
2020-03-12 10:35:36
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星