SimpleDateFormat df=new SimpleDateFormat(“d M y”);
String d=kb.nextLine();
Date lower=df.parse(d);
IDE显示未报告的异常错误ParseException,必须对其进行捕获或声明以便抛出。
String d=kb.nextLine();
Date lower=df.parse(d);
IDE显示未报告的异常错误ParseException,必须对其进行捕获或声明以便抛出。
解决方案:100分
对的,必需要处理异常,要么用try…catch,要么用throws继续往外抛。
因为parse()方法是throws ParseExceptiion的。
因为parse()方法是throws ParseExceptiion的。