标签:
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())。
原理还不是很清楚,只能先背下来了,以后再回来加以补充。
标签:
原文地址:http://www.cnblogs.com/dmcat/p/5740817.html