?????Щ????????
????1.try???????????????????????
????2.try????κ???????????????Σ?
????3.???catch?????????????????????????????????????????
????4.????????????????????????????????????????????????????catch????Σ??ж????????????catch??????е??????
????5.finally?ε?????????????????????С?
????6.?????try?????У???????????????????д???????????????????檔
??????????????

 

/**
* @author Lansine
*
*/
public class T1 {
/**
* @param args
*/
public static void main(String[] args) {
String s = "1";
try {
s = "2";
System.out.println(s);
if (s == "2")
throw new Exception("h");
} catch (Exception e) {
s = "3";
System.out.println(s);
} finally {
s = "4";
System.out.println(s);
}
s = "5";
System.out.println(s);
}
}

?????????????2??3??4??5    (????????????????)?????????????????????????????м???return???????Щ?????????

 

/**
* @author Lansine
*
*/
public class T2 {
/**
* @param args
*/
public static void main(String[] args) {
String s = "1";
try {
s = "2";
System.out.println(s);
return;
} catch (Exception e) {
s = "3";
System.out.println(s);
} finally {
s = "4";
System.out.println(s);
}
s = "5";
System.out.println(s);
}
}