在PicoContainer中使用了Visit模式,但他只提供了Visitor接口,没有使用Visitable接口。那么,它怎么提供accept方法呢?
PicoContainer是通过一种“横切”的办法来实现Visitable的
在PicoVisitor接口中,有这样一个方法:
Object traverse(Object node);
我们来看AbstractPicoVisitor中实现的traverse方法
public Object traverse(Object node) {
traversal = true;
try {
final Method accept = node.getClass().getMethod("accept", new Class[]{PicoVisitor.class});
accept.invoke(node, new Object[]{this});
return Void.TYPE;
} catch (NoSuchMethodException e) {
} catch (IllegalAccessException e) {
} catch (InvocationTargetException e) {
Throwable cause = e.getTargetException();
if (cause instanceof RuntimeException) {
throw (RuntimeException)cause;
} else if (cause instanceof Error) {
throw (Error)cause;
}
} finally {
traversal = false;
}
throw new IllegalArgumentException(node.getClass().getName() + " is not a valid type for traversal");
}
PicoContainer中虽然没有Visitable接口,但是他使用traverse方法利用动态代理取出node中的accept方法。
这样做跟使用Visitable接口有什么区别呢?个人认为,基本就没有什么区别,而且还不如使用Visitable接口来的直接。而且,使用这种方法,还使业务对象有种被偷窥的感觉————无论能不能被visit,只要有accept这个方法,就会被visit。