我在这里挠头..。
问题:我正在做一个基本的方法来计算两个对象字段并返回一个值。由于某种原因,它正在返回一个空值。我知道我忽略了一些非常简单的东西,但它却在踢我的屁股。
代码:
public class Tools {
// Instance variables
private String type;
private int age;
private int eol;
private Double lifeLeft;
// Constructor
public Tools(String type, int age, int eol) {
this.type = type;
this.age = age;
this.eol = eol;
}
public String toString() {
return type + " has reached " + lifeLeft() + "% of its life expectancy.";
}
public Double lifeLeft() {
lifeLeft = (double)((this.age / this.eol) * 100);
return lifeLeft;
}
}
我只是试图计算lifeLeft = age/eol * 100来获得一个百分比。我已经将这个问题追溯到我的lifeLeft()方法。由于某种原因,它没有得到对象的年龄和寿命。我做了一些System.out.println(年龄,eol)等测试,变量值反映0。
Sidenote:我从一个子类对象调用super.toString(),但我认为这并不重要。
子类,以供引用,以防出现这种情况。
public class Wrench extends Tools {
// Instance variables
private Double capacity;
// Constructor
public Wrench(String type, int age, int eol, Double capacity) {
super(type, age, eol);
this.capacity = capacity;
}
public String toString() {
return "Your " + capacity + "\" " + super.toString();
}
}
发布于 2016-05-26 12:32:48
(this.age / this.eol)
为零,因为整数除法向下舍入。
https://stackoverflow.com/questions/37470425
复制相似问题