Java??????
???????????? ???????[ 2012/12/25 9:53:59 ] ????????
????try catch??????
????try catch???????????????????????????????????????壬?????????????????????????????????鵱?????????????????????????????????????????????????????????????????а???????????????У???????????????????????????????????????????????????????????????????????????????????????????????????????????и???????????????try???????????????????????????????????????catch?е??????????????????????????????????????????????кú?????catch????????????o???????????????????????
???????????????
????????????????????????????????????????????????????????????????Exception????RuntimeException???????????????????????????????????????Sun???????????????????????????ü??????????????????????????????????????????????????
1.public class SimpleException extends Exception{
2. SimpleException(){}
3. SimpleException(String info){
4. super(info);
5. }
6.}
?????????д????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
1.public class Test {
2. public void fun() throws SimpleException{
3. throw new SimpleException("throwing from fun");
4. }
5. public static void main(String[] args) {
6. Test t = new Test();
7. try{
8. t.fun();
9. }catch(SimpleException e){
10. e.printStackTrace();
11. }
12. }
13.}
???????л?????????? printStackTrace????????????????????????????????????????????????System.err????????????????????????????????????е?????????е??ж???????????
SimpleException: throwing from fun
at Test.fun(Test.java:4)
at Test.main(Test.java:9)
????????鷳????
???????????????????????????????Щ???????????е???????Щ???????????????????????????????????????????.?????????μ????
1.public interface InterfaceA {
2. public void f() throws IOException;
3.}
?????????Test???????????????Test??f???????????????????????IOException??????????????и????????????????ο???Java Puzzlers????37??????????????????к????????????????????????????????????????????С???
??????
???·???
??????????????????
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