/*
* 将异常捕获并处理:
* 通过捕获语句,将异常对象捕获。
* 格式1:
* try{
需要检测的代码;
}catch(异常类 变量){
异常处理代码;
}
格式2:
try{
需要检测的代码;
}catch(异常类 变量){
异常处理代码;
}finally{
必须被执行代码
}
格式3:
try{
需要检测的代码;
}finally{
必须被执行代码
}
*/
public class Demo3 {
public static void main(String[] args) {
method();
}
public static void method() {
String mydate = "1992-10-27";
DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
try {
Date prase = df.parse(mydate);
System.out.println("可能出现的异常代码");
} catch (ParseException e) {
System.out.println("我处理了异常,继续执行");
}finally{
System.out.println("没谁了,我必须执行");
}
System.out.println("后边的代码");
}
}
|
|