I am learning Java. I have task to implement HashDictionary using DictionaryInterface
Hashtable<K,V> h;
Set<K> s = h.keySet();
K elements[]=(K[])Array.newInstance(KeyType, h.size());
When I have written the above statements the Eclipse IDE is showing a warning message.
@SuppressWarnings("unchecked")
If I add the above message before start of a method. The warning is disappeared. What is this means. Can anyone give the reason? Thanks in Advance