当我编写下面的代码时,如何解决eclipse编辑器中出现的警告消息
Map <String, Class> fieldTypes = new HashMap<String, Class>();
当我在上述方法的这一行之上添加Add @SuppressWarning'rawtypes'时,仍然食欲成空,显示此警告。
谢谢
布拉吉什
最佳答案
正确的方法是:
Map <String, Class<?>> fieldTypes = new HashMap<String, Class<?>>(); //If you want all unknowns.
这不需要
SuppressWarnings
。