这里不允许'void'类型(java)错误

时间:2013-02-22 08:20:45

标签: java types void

这是我的代码:

public void start()
{
  //If the gas tank and oil have more than nothing, and the transmission is in gear park, then the car can start
  if((gasTank.getGasLevel() > 0) && (engine.getOilLevel() > 0) && (transmission.gearPark()))
  {
    engine.startEngine();
    System.out.println("Engine is now on");
  }
  else
  {
    System.out.println("Please make sure your car is in proper gear, engine has oil and gas.");
  }
}

我一直收到'void' type not allowed here错误。我不是想要返回任何东西所以我知道我不需要int,Boolean,double等等。

我做错了什么?

2 个答案:

答案 0 :(得分:6)

您的代码不在课堂内。

试试这个:

public class SomeClass {
    // your method here
}

答案 1 :(得分:1)

看起来这些方法中的一个或多个可能无效,但不得为:

getGasLevel(); 
getOilLevel();
gearPark()

它们不能为空,因为您正在检查if语句中从它们返回的值。