next() -- 查找并返回来自此扫描器的下一个完整标记。 nextLine() -- 此扫描器执行当前行,并返回跳过的输入信息。 next() 和 nextLine() 区别: next()会将空格键、Tab键或Enter键等视为分隔符或结束符,不能得到带空格的字符串。 Scanner scanner = new Scanner(System.in); String string = scanner.next(); while(true){ System.out.println(string); string = scanner.next(); } nextLine()仅将Enter键作为结束符,返回Enter键前的所有字符,可以得到带空格 |