码迷,mamicode.com
首页 > 编程语言 > 详细

learning java 获取键盘输入

时间:2019-07-25 14:43:28      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:learn   text   out   new   获取   pre   int   var   next   

通过Scanner类,获取键盘的输入

        var sc = new Scanner(System.in);
       // while (sc.hasNext()){
       //     System.out.println("key context : " + sc.next());
       // }
        //while (sc.hasNextLong()){
        //    System.out.println("key context : " + sc.nextLong());
        //}
        while (sc.hasNextLine()){
            System.out.println("key context : " + sc.nextLine());
        }

 

learning java 获取键盘输入

标签:learn   text   out   new   获取   pre   int   var   next   

原文地址:https://www.cnblogs.com/lianghong881018/p/11244029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!