java的next(),nextint(),nextline()

原博客地址:代码部分
更加详细些

Java中关于nextInt()、next()和nextLine()的理解

cursor
美: [ˈkɜrsər]

n. 游标
网络 光标;指针;指标

先看解释:

  1. nextInt():
    it only reads the int value, nextInt() places the cursor in the same line after reading the input

  2. next():
    read the input only till the space . It can’t read two words separated by space. Also, next() places the cursor in the same line after reading the input.

  3. nextLine():
    reads input including space between the words (that is, it reads till the end of line \n). Once the input is read, nextLine() positions the cursor in the next line.

看完之后nextInt()、next()和nextLine()的区别已经很清楚了,我觉得最容易出错的就是cursor问题。

看下面代码:

只输入123

    public  static  void MaxMap() {
        Scanner cin = new Scanner(System.in);

        int n = cin.nextInt();

        String str = cin.nextLine();

        System.out.println("=====数值是======"+n );
        System.out.println("=====line是======"+str);
        System.out.println("END");

    }

执行后结果:
123
END

从执行结果上看,貌似直接跳过了String str = cin.nextLine();这行代码。

其实不然,原因是:nextInt()只读取数值,剩下"\n"还没有读取,并将cursor放在本行中。nextLine()会读取"\n",并结束(nextLine() reads till the end of line \n)。

如果想要在nextInt()后读取一行,就得在nextInt()之后额外加上cin.nextLine(),代码如下

输入:123 aaa(换行)
(空格)1111

    public  static  void MaxMap() {
        Scanner cin = new Scanner(System.in);

        int n = cin.nextInt();

        String str = cin.nextLine();
         String str2=cin.nextLine();
        System.out.println("=====数值是======"+n );
        System.out.println("=====line是======"+str);
        System.out.println("=====line是======"+str2);
        System.out.println("END");

结果:
=数值是123
=line是
(空格)aaa
=line是==(空格)1111
END

所以光标在nextint之后放到了123的后面,然后读取读到换行,换完行到了下一行。
然后再读到换行符。

123(空格)sss(换行)
(空格)aaa

    public  static  void MaxMap() {
        Scanner cin = new Scanner(System.in);

        int n = cin.nextInt();

        String str = cin.next();
         String str2=cin.next();
        System.out.println("=====数值是======"+n );
        System.out.println("=====line是======"+str);
        System.out.println("=====line是======"+str2);
        System.out.println("END");

    }

结果:
=数值是123
=line是
sss
=line是==aaa
END

next()只读空格之前的数据,并且cursor指向空格后面,而且如果后面接一个next或者nextint就肯定读不到空格,但是如果是nextline就可以读到空格。

nextline就可以读空格,然后光标在下一行。

读取数字也可以使用nextLine(),不过需要转换:Integer.parseInt(cin.nextLine())。

    public  static  void MaxMap() {
        Scanner cin = new Scanner(System.in);


        int n1=Integer.parseInt(cin.nextLine());
        int n2 = cin.nextInt();
     /*   String str = cin.next();*/

        System.out.println("=====数值是======"+n1 );
  /*      System.out.println("=====line是======"+n1);*/
        System.out.println("=====line是======"+n2);
        System.out.println("END");

    }

若想在nextInt()或next()后读取一行,需要加一行sc.nextLine(),相当于让sc.nextLine()读取掉上一行输入的回车(可以理解为消耗掉),此时下一行的nextLine()才会继续接受输入。

且不建议nextInt()或next()与nextLine()混用,可都用nextLine(),不过读数字时需要使用Integer的parseInt方法将字符串转成int

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值