1、try - catch的用法
1 public void test() {
2 try {
3 // TODO Somethings
4 } catch (Exception e) {
5 // TODO Otherthings
6 throw e;
7 }
8 System.out.println("print me");
9 }
上面的代码在做了,异常处理之后就不执行
System.out.println("print me");
这一语句了,
但是要让程序继续执行,只要删除catch里面的
throw e;
如下
1 public void test() {
2 try {
3 // TODO Somethings
4 } catch (Exception e) {
5 // TODO Otherthings
6 }
7 System.out.println("print me");
8 }
这样就会继续执行
System.out.println("print me");
2、变量声明规约
变量的声明应该遵循,变量使用范围最小化的原则。
比如说:能在try里面声明的就不要跑到方法头去声明。
posted on 2009-07-24 10:49
狼人 阅读(405)
评论(0) 编辑 收藏 所属分类:
Java