我写了一段代码,声明了三个实例变量和两个实例方法。但是,当我运行程序时,我在 checkTemperature 方法中收到语法错误。我检查了我的语法是否有任何缺失/过度使用的大括号、分号等,但代码看起来不错。我不确定为什么我会收到此错误,有人可以帮助解决这个问题吗?下面是我的代码。
public class volcanoRobots {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
/*
* declared instance variables status, speed,temperature
*/
String status;
int speed;
float temperature;
/*
* create first instance method checkTemperature
*/
void checkTemperature(){
if (temperature > 660){
status = "returning home";
speed = 5;
}
}
/*
* create second instance method showAttributes
*/
void showAttributes(){
System.out.println("Status: " + status);
System.out.println("Speed: " + speed);
System.out.println("Temperature: " + temperature);
}
}
}