Java??????????????????
???????????? ???????[ 2014/7/2 14:36:52 ] ????????Java
?????Щ????????
????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);
}
}
|
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11