Java 中Scanner的用法

通过 Scanner 类来获取用户的输入,下面是创建 Scanner 对象的基本语法:

Scanner s = new Scanner(System.in); // 从键盘接收数据

接下来我们演示一个最简单的数据输入,并通过 Scanner 类的 next() 与 nextLine() 方法获取输入的字符串,在读取前我们一般需要 使用 hasNext 与 hasNextLine 判断是否还有输入的数据:

next() 与 nextLine() 区别

next()的使用方法演示:

 
  1. import java.util.Scanner;

  2.  
  3. public class scannertest {

  4.  
  5. public static void main(String[] args) {

  6. Scanner s = new Scanner(System.in); // 从键盘接收数据

  7. // next方式接收字符串

  8. System.out.println("next方式接收:");

  9. // 判断是否还有输入

  10. if (s.hasNext()) {

  11. String str1 = s.next();

  12. System.out.println("输入的数据为:" + str1);

  13. }

  14. s.close();

  15. }

  16. }

 
  1. next方式接收:

  2. hello world

  3. 输入的数据为:hello

由结果可知:

  • 1、一定要读取到有效字符后才可以结束输入。
  • 2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。
  • 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
  • next() 不能得到带有空格的字符串。

nextLine()的使用方法演示:

 
  1. import java.util.Scanner;

  2. public class scannertest2 {

  3.  
  4. public static void main(String[] args) {

  5.         Scanner s = new Scanner(System.in); // 从键盘接收数据

  6.         // next方式接收字符串

  7.         System.out.println("nextLine方式接收:");

  8.         // 判断是否还有输入

  9.         if (s.hasNextLine()) {

  10.             String str2 = s.nextLine();

  11.             System.out.println("输入的数据为:" + str2);

  12.         }

  13.         s.close();

  14.     }

  15. }

 

[plain] view plain copy print?

  1. <code class="language-java">nextLine方式接收:  
  2. hello world 2018  
  3. 输入的数据为:hello world 2018</code>  


 
  1. nextLine方式接收:

  2. hello world 2018

  3. 输入的数据为:hello world 2018

由上面可以看出,nextLine()方法具有以下特点:

  • 1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符;
  • 2、可以获得空白,都会读入,空格等均会被识别;

注意:如果要输入 int 或 float 类型的数据,在 Scanner 类中也有支持,但是在输入之前最好先使用 hasNextXxx() 方法进行验证,再使用 nextXxx() 来读取,下面实现的功能是可以输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束输入并输出执行结果:

 
  1. import java.util.Scanner;

  2. public class scandemo {

  3.  
  4. public static void main(String[] args) {

  5. System.out.println("请输入数字:");

  6. Scanner scan = new Scanner(System.in);

  7.  
  8. double sum = 0;

  9. int m = 0;

  10.  
  11. while (scan.hasNextDouble()) {

  12. double x = scan.nextDouble();

  13. m = m + 1;

  14. sum = sum + x;

  15. }

  16.  
  17. System.out.println(m + "个数的和为" + sum);

  18. System.out.println(m + "个数的平均值是" + (sum / m));

  19. scan.close();

  20. }

  21. }

 
  1. 请输入数字:

  2. 20.0

  3. 30.0

  4. 40.0

  5. end

  6. 3个数的和为90.0

  7. 3个数的平均值是30.0

发布了7 篇原创文章 · 获赞 4 · 访问量 4094

猜你喜欢

转载自blog.csdn.net/mo926983/article/details/83038703