美文网首页Java大法
System.in.nextInt()的写法

System.in.nextInt()的写法

作者: DreamOver | 来源:发表于2015-04-07 12:57 被阅读257次

    以前在使用

                System.in.nextInt();
    

    这个方法的时候,总是要写好几行代码,比如:

                int a;
                Scanner in;
                in = new Scanner(System.in);
                a = in.nextInt();
    

    昨天让朋友帮忙看一段问题代码,才新学会一招,只要一句:

                int a = new Scanner(System.in).nextInt();
    

    很实用也很好记啊!
    另外,诸如 nextFloat() 等方法也以此类推。

    相关文章

      网友评论

        本文标题:System.in.nextInt()的写法

        本文链接:https://www.haomeiwen.com/subject/nfszxttx.html