我有这段代码:
import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.NotBoundException;
import java.rmi.Remote;
import java.rmi.RemoteException;
public class ClientLookup<T extends Remote> {
private T sharedObject;
public void lookup(String adress) throws MalformedURLException, RemoteException, NotBoundException {
sharedObject = (T) Naming.lookup(adress);
}
public T getSharedObject() {
return sharedObject;
}
}
带有“ (T) Naming.lookup(adress) ”的部分给了我一个警告:“类型安全:未经检查的从远程转换为 T ”
我不想使用“ @SuppressWarnings("unchecked") ”,我只想知道为什么它在“ T extends Remote ”时显示警告并修复它(对于干净的代码)
谢谢。