[在程序中抛出异常]
在程序中抛出异常,一定要使用关键字throw. throw+异常实例对象。
public class Demo2 {
public static void main(String[] args) {
int a = 10;
int b = 0;
try{
if(b==0) throw new ArithmeticException("除数不能为零!");
else
System.out.println("a/b = "+a/b);
}
catch(ArithmeticException e){
System.out.println("异常为 "+e);
}
}
}
[指定方法抛出异常]
如果在方法内部的程序代码也会出现异常,且方法内部还没有捕获该异常的代码块,则必须在生命方法的同时一并指出所有肯能发生的异常,以便调用该方法的程序得以做好准备来捕获异常。
方法 throws 异常1,异常2……
class Test{
// 在指定方法中抛出异常,但是不处理它。
public void add(int a,int b) throws Exception
{
int c = a/b;
System.out.println(a+"/"+b+" = "+c);
}
}
public class Demo2 { public static void main(String[] args) {
Test test = new Test();
try {
test.add(4,0);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
} }
}
抛出异常。
上述的代码中,如果在main()函数中抛出异常 throws Exception,整个程序还是能够变异通过的.这也就说明了异常的抛出是向上抛出的,main() 是整个程序的最低点。
[编写自己的异常类]
java可通过继承的方式编写自己的异常类。因为所有可处理的异常类均继承自Exception类,所以自定义异常类也必须继承这个类。\\
自己编写异常类的语法如下:
class 异常名称 extends Exception
{
… …
}
class DefaultException extends Exception {
public DefaultException(String msg) {
super(msg);
}
}
public class Demo3 {
public static void main(String[] args) {
try{
throw new DefaultException("Hello, 自定义的异常!");
}
catch(DefaultException e){
System.out.println(e);
}
}
}
之所以使用super(msg)是因为父类Exception:Exception构造方法:
public Exception(String message)