next 与 nextLine 方法的区别

简介: next 与 nextLine 方法的区别

文字说明:


next():


1、一定要读取到有效字符后才可以结束输入。

2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。

3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。

next() 不能得到带有空格的字符串。

nextLine():


1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。

2、可以获得空白。


举例说明

1. Next 方法

说明:遇到空白符 就会结束(空白符包括但不限于 空格、回车、制表符、翻页......)

代码:


    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()){//hasNext用来判断后面是否还有代码
            System.out.println(scanner.next());
        }
    }

输出结果



6da1d6e69c4645c0b5659ecf736f3984.png


2. nextLine 方法

说明:遇到换行才会结束! 单纯的空格也能读出来

代码:

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()){//hasNext用来判断后面是否还有代码
            System.out.println(scanner.nextLine());
        }
    }

输出结果:

3f305537ceba45fb8456b2056e7c3928.png

相关文章
|
3月前
|
移动开发
nextInt()接收整数后再用nextLine()接收字符串,导致nextLine()方法无效
nextInt()接收整数后再用nextLine()接收字符串,导致nextLine()方法无效
40 1
|
5月前
|
算法 程序员
老程序员分享:nextInt和nextLine以及next方法的区别
老程序员分享:nextInt和nextLine以及next方法的区别
110 0
|
6月前
|
程序员
Scanner类中next()和nextLine()的区别
Scanner类中next()和nextLine()的区别
67 0
|
Java
Scanner的基本用法
Scanner的基本用法
114 0
Scanner中nextLine()在nextInt()的几种解决方式
Scanner中nextLine()在nextInt()的几种解决方式
87 0
|
算法 Java
Java输入时 next()和nextLine()的区别
一定要读取到有效字符后才可以结束输入。
键盘输入Scanner类方法属性使用
键盘输入Scanner类方法属性使用
66 0
|
存储 安全 Java
Java开发——16.常用类(Scanner、Object、String、StringBuffer、StringBuilder)
Scanner:一个简单的文本扫描器,可以使用正则表达式解析原始类型和字符串。
Java开发——16.常用类(Scanner、Object、String、StringBuffer、StringBuilder)
println输入和toString方法的重写
println输入和toString方法的重写
127 0
next()和nextLine()的一些小问题
next()和nextLine()的一些小问题
140 0
next()和nextLine()的一些小问题