hasNext() - when does it block and why?

前端 未结 3 1941
无人及你
无人及你 2020-11-29 12:43

I\'m trying to read commands via a Scanner Object. For checking the Input Syntax I use sc.hasNext() (for the case of missing commands). It did work

相关标签:
3条回答
  • 2020-11-29 13:03

    There is a difference between testing via Console or via TextFile. If I read from Console the program expects a Stream and it will wait for further Input.

    When testing via Input from Textfile (still with System.in for the Scanner, using Java Program ) the hasNext() will return false at the end of the file as no further Input can be done.

    I can't really find documentation (in https://docs.oracle.com/javase/9/docs/api/java/util/Scanner.html#hasNext--) on this Topic. So if anyone finds a proper and technical correct answer I would be very greatfull.

    0 讨论(0)
  • 2020-11-29 13:09

    I'm not sure , but the following is my own experience :
    when the Scanner object is fed with a file , it will not be blocking !
    By the term "fed with a file " I mean that the scanner is constructed like this :
    Scanner scanner = new Scanner("myFile.txt");

    But if the scanner is constructed using the getInputStream()method of a Socket object , like this :

    input = socket.getInputStream();
    Scanner scanner = new Scanner(input);
    

    the scanner will be blocking !

    0 讨论(0)
  • 2020-11-29 13:10

    If you have nothing else to do while waiting for user input, then it's fine to be blocked at that call until the next input arrives.

    If you do want to run other code while waiting for input, spawn a new thread and call hasNext and other blocking scanner methods from there.

    0 讨论(0)
提交回复
热议问题