Pals, Pls can anyone explain to me what's the use of the hasNext() method works in a program Like this. Scanner scan = new Scann | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pals, Pls can anyone explain to me what's the use of the hasNext() method works in a program Like this. Scanner scan = new Scann

Pals, Pls can anyone explain to me what's the use of the hasNext() method works in a program Like this. Scanner scan = new Scanner(System.in); string grades; while( scan.hasNext() ) { grades = scan.next(); }

26th Aug 2018, 5:50 PM
Just_Chuel
4 Answers
+ 9
hasNext Returns true if this scanner has another token in its input. [...] Source: Language reference https://docs.oracle.com/javase/9/docs/api/java/util/Scanner.html#hasNext-- Using this method as a condition for the while loop means, that the statements in the loop will be executed as long as there are more input tokens. You can use it to make sure to not read more tokens than were input (to avoid an exception).
26th Aug 2018, 6:19 PM
Tashi N
Tashi N - avatar
0
hasNext() returns returns true if there is any further input. Specifically, it checks to see if the Scaner has reached the end of the input stream. When reading from System.in, it will always return true, since System.in remains open. To avoid an infinite loop, there should be some sort of exit condition. For instance, while (!grades.equalsIgnoreCase(“exit”)) Alternatively, you could create an if statement within the loop which leads to a break statement when the exit string is entered.
26th Aug 2018, 6:17 PM
krikkitbot
krikkitbot - avatar
0
https://code.sololearn.com/cZ5dqNvnGxNZ/?ref=app Pls, if you can, open this code and expalin to me while the compiler throws a noSuchElement excepion at line eleven.
26th Aug 2018, 7:31 PM
Just_Chuel
0
It's SoloLearn bug, I left a comment on your code with more details.
27th Aug 2018, 3:29 AM
BlazingMagpie
BlazingMagpie - avatar