我要做的是,我有2个游戏,一个叫做ToF,一个叫做旋转。 如果输入的字符串是“旋转”,则启动旋转游戏。并将控制台输入转换为int。
如果输入int为1,则旋转滚轮。 如果输入int为-1,则将控制台输入更改为String,然后退出循环。
但是我收到了这个错误:
src\Main.java:39: error: incompatible types
input = console.nextLine();
我的属性:
private static Scanner console = new Scanner(System.in);
private static Spin spin = new Spin();
private static String input = "";
private static String[] gamesArray = new String[] {"spin", "tof"};
private static boolean spinWheel = false;
private static boolean tof = false;
有错误:
while (input.equals("spin")) {
System.out.println("Spin game!");
spinWheel = true;
int input = console.nextInt();
if (spinWheel) {
System.out.println("Welcome to the spin game! Please write 1 to spin. and -1 to exit back");
switch (input) {
case -1:
input = console.nextLine();
break;
case 1:
break;
}
}
}
有什么问题?它为什么这样做?我该如何解决这个问题?
答案 0 :(得分:1)
你需要
this.input = console.nextLine();
因为您隐藏input
与您的本地int
变量同名。
更清洁的解决方案是给两个变量中的一个变成一个不同的名称。