所以我試圖爲一個參數類創建一個代理。如何創建一個作爲參數給出的類的代理
public static Object lookup(Class<?> cl,
CommunicationModule communicationModule) {
InvocationHandler handler = new InvocationHandler() { ... };
cl proxy = (cl) Proxy.newProxyInstance(cl.class.getClassLoader(),
new Class[] { cl.class }, handler);
return proxy;
}
但是這不起作用的原因。這有什麼問題?
有什麼錯誤? – 2014-11-04 09:30:04
「cl不能解析爲類型」 – user2443088 2014-11-04 09:33:42