我正在尝试制作一个复制电梯操作(2层)的应用程序。但是当我问用户他想去哪一层时,有两种不同的可能性。第一个,用户进入地板,电梯移动。第二个电梯在10秒钟后仍然没有用户响应,此时,电梯必须关闭门并关闭灯。
所以我的问题在于超时,因为我希望我的“ while”继续。
我的主:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
import java.util.Timer;
import java.util.TimerTask;
public class TP5 {
private String floorAsk = "";
TimerTask task = new TimerTask() {
public void run() {
if (floorAsk.equals("")) {
System.out.println("No response ...");
task.cancel();
}
}
};
public boolean getInput() throws Exception {
Timer timer = new Timer();
timer.schedule(task, 10 * 1000);
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
floorAsk = in.readLine();
timer.cancel();
System.out.println("Floor ask " + floorAsk);
return true;
}
/**
* main.
* @param args ceci est un String[]
*/
public static void main(String[] args) {
Controller c = new Controller();
Door p = new Door();
Light l = new Light();
Engine m = new Engine();
Button b = new CallButton();
while (true) {
Scanner sc = new Scanner(System.in);
System.out.println("What is your floor ?");
String actualFloorString = sc.nextLine();
int actualFloor = Integer.parseInt(actualFloorString);
if (actualFloor == 0 || etageAct == 1) {
System.out.println("You are at floor " + actualFloorString);
if (actualFloor != c.getShaft()) {
if (actualFloor > c.getShaft()) {
m.up();
} else if (actualFloor < c.getShaft()) {
m.down();
}
}
if (!l.isOn()) {
l.on();
}
if (!p.isOpen()) {
p.open();
}
System.out.println("Which floor do you want to go ?");
try {
(new TP5()).getInput();
} catch (Exception e) {
System.out.println(e);
}
System.out.println("test");
} else {
System.out.println("Please enter a valid floor (0 or 1)");
}
}
}
}
我尝试使用以下解决方案:Time limit for an input
但是我想回到“一会儿”,我不知道该怎么做,或者我是否使用正确的方法来做。
我还有其他班级,例如Contoleur,Lumiere,Moteur,Porte和Bouton。但是我还没有编写功能代码。
感谢您的回答
编辑
好吧,也许我找到了一种方法,我修改了代码,现在有了一个可以接受扫描仪参数和String的函数:
public static int ask(Scanner sc, String t) {
System.out.println(t);
return sc.nextInt();
}
我想知道是否有可能对函数设置超时。你知道这有可能吗?
答案 0 :(得分:0)
我建议使用Timer类。 https://docs.oracle.com/javase/7/docs/api/java/util/Timer.html
10秒超时后,让计时器调用“关闭”电梯门的方法。
如果用户输入有效的整数,则可以取消计时器。门打开时可以创建一个新计时器。
编辑:当我向下滚动到main方法时,我没有看到您已经在使用Timer对象。