我正在尝试从另一个类中的方法将一些整数调用到一个类中
public class Variables
{
public void vary()
{
int DSpr
}
}
public class BattleCalc
{
public static void main(String[] args)
{
Variables v = new Variables();
v.vary();
Scanner spr = new Scanner(System.in);
DSpr = Integer.parseInt(spr.nextLine()); //This line here
}
}
到目前为止,这是我的代码,但是在 DSpr = Integer.parseInt... eclipse 上给我一个错误“DSpr 无法解析”。为什么它不从 Variables 调用 DSpr ?