我有一个函数,声明如下:
public synchronized void update(HashMap<String, Comparable> data)
数据包含字符串和整数,但 Comparable 会发出警告
Comparable is a raw type. References to generic type Comparable<T> should be
parameterized
由于我没有过多地发现警告,问题是,是否有正确的方法,我不想压制警告。
预先感谢!马库斯