如何修复引发的“ NoSuchElementException”

时间:2019-09-28 03:03:05

标签: java nosuchelementexception

我创建了一个交互式的类,它解决了运动学方程问题(在用户输入循环中的另一个类:mathiverse中访问了该类),效果很好,但是给出答案后,它抛出了NoSuchElementException

我曾尝试移动我关闭扫描仪的位置,但是没有用,我很确定问题出在输入循环中我的Kinematic类如何工作。

我的用户输入循环和运动构造函数(不在同一个类中):

while(!(input.equals("exit")))
{
    if(input.equals("help"))
    {
        System.out.println("~ Commands ~");
        System.out.println("help - brings up a list of 
        commands(what you're reading)");
        System.out.println("kinematic - solves a kinematic 
        equations problem; requires input of known and unknown 
        variables");
        System.out.println("exit - closes the program");
        System.out.println("~~~~~~~~~~~~");
    }

    //user decides to explore kinematic options
    if(input.equals("kinematic"))
    {
        Kinematic calc = new Kinematic();

        System.out.println(calc.answer());
    }

    input = scan.nextLine();
}

public Kinematic()
{
    Scanner scanMath = new Scanner(System.in);

    System.out.println("If you are solving for the variable, enter \"?\", 
    if the variable is not given, enter a space.");
    System.out.println("Enter the acceleration: ");
    acc = scanMath.nextLine();

    System.out.println("Enter the displacement: ");
    disp = scanMath.nextLine();

    System.out.println("Enter the initial velocity: ");
    init = scanMath.nextLine();

    System.out.println("Enter the final velocity: ");
    fin = scanMath.nextLine();

    System.out.println("Enter the time: ");
    time = scanMath.nextLine();

    scanMath.close();
}

给出答案后,我希望我的代码继续搜索输入,但是会引发以下消息:

  

线程“主”中的异常java.util.NoSuchElementException:无行   在以下位置找到java.base / java.util.Scanner.nextLine(Scanner.java:1651)   Mathiverse.main(Mathiverse.java:53)

1 个答案:

答案 0 :(得分:0)

从Kinematic关闭扫描仪时,也将关闭System.in流。在您的主要方法和Kinematic中使用同一台扫描仪。

看看: java.util.NoSuchElementException - Scanner reading user input