大家好,又见面了,我是你们的朋友全栈君。
前言:借别人的例子做个总结。
原文出处:http://www.cnblogs.com/gold-worker/archive/2013/04/10/3013063.html
###代码一
package cn.dx;
import java.util.Scanner;
public class ScannerTest {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("请输入一个整数");
while(in.hasNextInt()){
int num = in.nextInt();
System.out.println("请输入一个字符串");
String str = in.nextLine();
System.out.println("num="+num+",str="+str);
System.out.println("请输入一个整数");
}
}
}
###结果一
是
请输入一个整数
1231
请输入一个字符串
num=1231,str=
请输入一个整数
第二个String类型的参数没有读取进来。
自己查看了下nextInt()和nextLine()方法的官方文档
nextLine()
Advances this scanner past the current line and returns the input that was skipped. 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.
nextInt()方法会读取下一个int型标志的token.但是焦点不会移动到下一行,仍然处在这一行上。当使用nextLine()方法时会读取改行剩余的所有的内容,包括换行符,然后把焦点移动到下一行的开头。所以这样就无法接收到下一行输入的String类型的变量。
###代码二
package cn.dx;
import java.util.Scanner;
public class ScannerTest {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("请输入一个整数");
while(in.hasNextInt()){
int num = in.nextInt();
System.out.println("请输入一个字符串");
String str = in.next();
System.out.println("num="+num+",str="+str);
System.out.println("请输入一个整数");
}
}
}
###结果二
请输入一个整数
123
请输入一个字符串
sdjakl
num=123,str=sdjakl
请输入一个整数
213 jdskals
请输入一个字符串
num=213,str=jdskals
请输入一个整数
##总结:
Scanner(InputStream in)
constructs a Scanner object from the given input stream.
String nextLine()
reads the next line of input.
String next()
reads the next word of input (delimited by whitespace).
int nextInt()
double nextDouble()
read and convert the next character sequence that represents an
integer or floating-point number.boolean hasNext()
tests whether there is another word in the input.
boolean hasNextInt()
boolean hasNextDouble()
test whether the next character sequence represents an integer or
floating-point number.
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/134319.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...