我正在阅读关于Java的这本书,在本书的第一章中,本书将这段代码复制到文本编辑器中。所以我输入全部,编译它,编译器告诉我我有61个错误。
显然,因为这是在第一章中我不了解Java的所有细节所以这些错误完全超出我的意思。我不确定一个例子怎么会有这么多错误,除非我做错了很可能。
以下是代码:
class VolcanoApplication {
public static void main(String[] arguments) {
VocanoRobot dante = new VolcanoRobot();
dante.status = "exploring";
dante.speed = 2;
dante.tempurature = 510;
dante.showAttributes();
System.out.println("Increasing speed to 3.");
dante.spped = 3;
dante.showAttributes();
System.out.println("Changing temperature to 670.");
dante.temperature = 670;
dante.showAttributes();
System.out.println("Checking temperature.");
dante.checkTemperature();
dante.showAttributes();
}
}
大多数错误包括"期望''""。如果有人能帮助我,我将不胜感激。
答案 0 :(得分:0)
你拼错了Volcano:
VocanoRobot dante = new VolcanoRobot();
它可能应该是(在第一座火山中忘记了):
VolcanoRobot dante = new VolcanoRobot();
试一试,看看你是否还有其他错误。