堆栈溢出,你好。我无法理解这段代码的输出
public static void main (String[] args)
{
String context = "0100 55 3L 62D 127 6F (int)7";
Scanner s = new Scanner(context);
while(s.hasNextLong()) {
System.out.print(s.nextLong() + ",");
}
}
输出是100,55,
,但我不明白为什么127
不包含在输出中?我的意思是为什么输出不像100,55,127,
?