黑马程序员:Java培训.Android培训.iOS培训..Net培训 黑马程序员--JAVA异常 一.JAVA异常有三种语句块:try语句块.catch语句块.finally语句块. 1.try语句块:在抛出异常后中断执行. 2.catch语句块:在捕获相应异常后执行. 3.finally语句块:始终执行,不管是否有异常. 二.抛出异常的三种形式 1.系统自动抛出异常,例如下面语句 int a = 3, b = 0; int c = a / b; 2.语句抛出异常:thow 异常对象 用于程序…
1.RuntimeException public class RuntimeException { public static void main(String[] args) { // TODO Auto-generated method stub String str="; int temp=Integer.parseInt(str); System.out.println(temp*temp); } } 查看parseInt方法的源代码如下: public static int pars…
Java异常处理中finally中的return会覆盖catch语句中的return语句和throw语句,所以Java不建议在finally中使用return语句 此外 finally中的throw语句也会覆盖catch语句中的return语句和throw语句 程序实例如下:(本代码来源于CSDN某大神:http://blog.csdn.net/hguisu/article/details/6155636 在此表示感谢) package Test; public class TestExce…