②这个例子抛出异常后 System.out.println("执行"); 会执行 public static void main(String[] args)throws Exception { SimpleDateFormat sdf = new SimpleDateFormat("yyyy,MM,dd"); Date date1 = sdf.parse(strTime); System.out.println("执行"); } 问题:为啥都是抛出异常,大家都没有处理异常,但是一个会执行一个不会执行啊?求教大神们
①这个例子抛出异常后 System.out.println("执行"); 不会执行
public static void main(String[] args)throws Exception {
String str = null ;
int strLength = 0;
strLength = str.length();
System.out.println(strLength);
System.out.println("执行");
}