My professor tends to do the following to get a number from the user:
Scanner scanner = new Scanner(System.in);
Integer.parseInt(scanner.nextLine());
nextInt() reads a number, but doesn’t consume line separator. While nextLine() reads the String and consumes the new-line character. According to Java Docs:
… This method returns the rest of the current line, excluding any line separator at the end. The position is set to the beginning of the next line.
In other words when you enter a number then press Enter, input.nextInt() consumes only the number, not the "end of line", primitive data types like int, double etc does not consume "end of line", due which this "end of line" remain in buffer ane When input.next() executes, it consumes the "end of line" from buffer from the first input. So you professor is trying to get to the next line after he reads the user input. You have to look at the logic of his codes only then you can understand it.
I also used to face this problem often. So i use to code like this..
public static void main(String[] args) {
Scanner key= new Scanner(System.in);
String name;
int age;
age = key.nextInt();
key.nextLine();
name = key.nextLine(); //to carry the new line character left behind nextInt()
System.out.println("Age : "+age);
System.out.println("Name: "+name);
}
here as the key.nextInt()
leaves a new line character we are using key.nextLine()
to carry the new Line character and then move to the nextline where the actual data is present. As we discussed above using Integer.parseInt()
will be more efficient than using nextInt()
. But this is also one of the way to code to overcome the problem.
There are 2 observations :
myScannerInstance.nextInt()
leaves behind a new line character. So, if you call nextLine()
after nextInt()
, the nextLine()
will read the new line character instead of the actual data. Consequently, you will have to add another nextLine()
after the nextInt()
to gobble up that dangling new-line character. nextLine()
doesn't leave behind a new line character.code :
int age=myScannerInstance.nextInt();
String name = myScannerInstance.nextLine();// here the actual name will not be read. The new line character will be read.
nextInt()
will again go back to the underlying stream and read. IO calls take time (expensive). It will do lot of checks to get the next integer. nextLine()
will do those checks only once. So, if you call nextLine()
once and read 5 integers (as a single line String), split them and parse them as integers (using Integer.parseInt()
), it will be faster and more efficient than reading each int individually.Using nextLine()
+ parseInt()
will give you enormous performance benefit when you are running a very large loop.
Usage :
Using nextInt()
gives you an additional advantage wherein you will get an exception if the input text is not an integer. example 123
is accepted.. 123sdsa
will throw an InputMismatchException
. So, you can catch it and handle it appropriately.
Using nextLine()
will read the entire line, so, it will read the entire String sada1231
and then fail with NumberFormatException
if it cannot parse the String as a number. You will have to handle that exception.
Generally, one nextLine()
/ nextInt()
call won't make much of a difference. If you have a loop or if you are reading lot of data, then using readLine()
with parseInt()
will be very efficient.