这应该是一个低级别的过程,并不意味着我们不能拥有与当前级别相同的东西,但它可能需要一堆代码并且会使系统稍微复杂一些。但是我的建议是这样的(我希望我做对了),首先为想要处理异常的人定义一个接口,就像这样。
interface ExceptionHandler{
void handleException(Throwable t);
}
然后为用户(API)提供注释以标记其方法可能会引发一些异常。
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
@interface Catch{
public Class<? extends ExceptionHandler> targetCatchHandler();
public Class<? extends Throwable> targetException() default Exception.class;
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@interface CatchGroup{
public Catch[] catchers();
}
接下来我们需要一个接口来开始调用可能抛出异常的方法,就像这样。
interface Caller{
void callMethod()throws Throwable;
}
那么你需要一个负责管理执行流程并调用可能的异常处理程序的人
class MethodCaller{
/*
* @param isntance: instance which implemented the Caller interface
*/
public static void callMethod(Caller instance)
throws Exception {
Method m = instance.getClass().getMethod("callMethod");
Annotation as[] = m.getAnnotations();
Catch[] li = null;
for (Annotation a : as) {
if (a.annotationType().equals(CatchGroup.class)) {
li = ((CatchGroup) a).catchers();
}
// for(Catch cx:li){cx.targetException().getName();}
}
try {
instance.callMethod();
} catch (Throwable e) {
Class<?> ec = e.getClass();
if (li == null) {
return;
}
for (Catch cx : li) {
if (cx.targetException().equals(ec)) {
ExceptionHandler h = cx.targetCatchHandler().newInstance();
h.handleException(e);
break;
}
}
}
}
}
最后,让我们举一些例子,它对我来说效果很好,很酷。异常处理程序。
public class Bar implements ExceptionHandler{//the class who handles the exception
@Override
public void handleException(Throwable t) {
System.out.println("Ta Ta");
System.out.println(t.getMessage());
}
}
和方法调用者。
class Foo implements Caller{//the class who calls the method
@Override
@CatchGroup(catchers={
@Catch(targetCatchHandler=Bar.class,targetException=ArithmeticException.class),
@Catch(targetCatchHandler=Bar.class,targetException=NullPointerException.class)})
public void callMethod()throws Throwable {
int a=0,b=10;
System.out.println(b/a);
}
public static void main(String[] args) throws Exception {
Foo foo=new Foo();
MethodCaller.callMethod(foo);
}
}
如您所见,用户必须通过方法调用callmethod()
方法,您还将省略Caller
接口,并使用注释在一个需要一堆额外代码的类中声明多个方法。我希望我能伸出援手。