Java中关于nextInt()、next()和nextLine()的区别

nextInt(): it only reads the int value, nextInt() places the cursor in the same line after reading the input.

next(): read the input only till the space. It can't read two words separated by space. Also, next() places the cursor in the same line after reading the input.

nextLine():  reads input including space between the words (that is, it reads till the end of line \n). Once the input is read, nextLine() positions the cursor in the next line.


猜你喜欢

转载自blog.csdn.net/sinat_34074514/article/details/79966372