投我嘗試對象轉換我的Action類,但它導致了警告:類型安全:未選中的對象
Type safety: Unchecked cast from Object to Action<ClientInterface>
Action<ClientInterface> action = null;
try {
Object o = c.newInstance();
if (o instanceof Action<?>) {
action = (Action<ClientInterface>) o;
} else {
// TODO 2 Auto-generated catch block
throw new InstantiationException();
}
[...]
感謝您的幫助
'c'的類型是什麼? – meriton 2010-04-07 13:21:10
關於c的類型: 類> c = null; c = Class.forName(className); 無論如何,我有足夠明確的答案!謝謝大家,是否有可能以某種方式關閉問題或將問題標記爲已回答? – Matthew 2010-04-07 14:28:40
是的,使用您偏好答案左邊的綠色複選標記。的 – meriton 2010-04-07 15:44:47