本帖最后由 杨兴庭 于 2013-7-23 17:43 编辑
在进行数据处理的时候,可以提前对输入数据进行控制,避免不合理的数据传入;异常处理也能对传入的不合理数据进行控制。 [br/] [br/]那么为了避免不合理的数据进行运算,什么时候用控制数据的方法?什么时候用异常处理?- //什么时候用控制数据的方法,什么时候用异常处理?
- class Demo
- {
- int div(int a,int b)
- {
- return a/b;
- }
- }
- class ExceptionDemo
- {
- public static void main(String[] args)
- {
- Demo d = new Demo();
- try
- {
- int x= d.div(4,0);
- System.out.println("x="+x);
- }
- catch (Exception e)
- {
- System.out.println("不能除以零");
- }
-
-
- System.out.println("Hello World!");
- }
- }
复制代码 |
|