当前位置: 代码迷 >> java >> 电梯:用户输入
  详细解决方案

电梯:用户输入

热度:72   发布时间:2023-08-04 09:19:56.0

我正在尝试制作一个复制电梯操作(两层)的应用程序。 但是当我问用户他想去哪一层时,有两种不同的可能性。 第一个,用户进入地板,电梯移动。 第二个电梯在10秒钟后仍未收到用户响应,此时,电梯必须关闭门并关闭灯。

所以我的问题是超时,因为我希望我的“一会儿”继续下去。

我的主要:

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)");
      }
    }

  }
}

我尝试使用以下解决方案:

但是我想回到自己的“一会儿”,但我不知道该怎么做,或者我是否使用正确的方法来做。

我还有其他班级,例如Contoleur,Lumiere,Moteur,Porte和Bouton。 但是我还没有编写函数代码。

谢谢你的回答

编辑

好吧,也许我找到了一种方法,修改了我的代码,现在我有了一个可以接受扫描仪参数和String的函数:

public static int ask(Scanner sc, String t) {
    System.out.println(t);

    return sc.nextInt();
}

我想知道是否有可能对函数设置超时。 你知道有可能吗?

我建议使用Timer类。

10秒超时后,让计时器调用“关闭”电梯门的方法。

如果用户输入有效的整数,则可以取消计时器。 门打开时可以创建一个新的计时器。

编辑:当我向下滚动到main方法时,我没有看到您已经在使用Timer对象。

  相关解决方案