我应该制作一个包含方法和字符串格式的程序。情况是用户输入了一个新的树示例:Tree t = new Tree(27, 43.25, "Pine") 然后输入 t.describe() 并接收到这个输出“树号 27 的周长为 43.25 并且是种松树。”
这是我的代码:
public class Tree{
int serial;
double circumference;
String species;
Tree(int serial, double circumference, String species) {
this.serial = serial;
this.circumference = circumference;
this.species = species;
}
public String describe() {
String.format("Tree number %d has a circumference of %.2f and is of species %s.", serial, circumference, species);
return describe();
}
}
该程序只是炸毁了。谢谢你的帮助!