67,549
社区成员




new InvocationHandler() {
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Object reObj = null;
reObj = method.invoke(c, args);
return reObj;
}
});