我正在尝试制作如下所示的单身人士,但我不断收到警告。如果可能的话,我不想抑制警告。有没有办法做到这一点?
现在,我不想考虑线程安全。我只是想通过这个警告。
public interface Storage<K, V> {
public void put(K key, V value);
public V get(K key);
}
public static class DefaultStorage<K, V> implements Storage<K, V> {
private Map<Object, Object> map = new ConcurrentHashMap<Object, Object>();
private static DefaultStorage<K, V> defaultStorage;
private DefaultStorage() {
//
}
public static DefaultStorage<?, ?> getInstance() {
if (defaultStorage== null) {
defaultStorage= new DefaultStorage();
}
return defaultStorage;
}
}
谢谢。