码迷,mamicode.com
首页 > 其他好文 > 详细

input.nextLine()另一种用法

时间:2016-08-05 13:52:21      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:

 1 import java.util.Scanner;
 2 
 3 public class InputException{
 4     public static void main(String[] args){
 5         Scanner input = new Scanner(System.in);
 6         boolean a = true;
 7         do{
 8             //boolean a = true;a在方法体内,while无法在外部使用;
 9             try{
10                 System.out.println("输入一个整数:");
11                 int number = input.nextInt();
12                 System.out.println("输入的整数是" + number);
13                 a = false;
14             }
15             catch(Exception iec){
16                 System.out.println("输入的内容错误,请再试一次:");
17                 input.nextLine();
18             }
19         }while(a);
20     }
21 }

 

这里的input.nextLine()作用是丢弃当前行,重新输入(input.nextInt())。

原理还不是很清楚,只能先背下来了,以后再回来加以补充。

input.nextLine()另一种用法

标签:

原文地址:http://www.cnblogs.com/dmcat/p/5740817.html

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