Stackoverflow,你好。 我有問題理解輸出這段代碼Java掃描器nextLong
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,
?
謝謝,非常明確的答案。 – user2654250