我正在学习Java。我的任务是使用 DictionaryInterface 实现 HashDictionary
Hashtable<K,V> h;
Set<K> s = h.keySet();
K elements[]=(K[])Array.newInstance(KeyType, h.size());
当我写完上述语句后,Eclipse IDE 会显示一条警告消息。
@SuppressWarnings("unchecked")
如果我在方法开始之前添加上述消息。警告消失。这是什么意思。任何人都可以给出原因吗?提前致谢