import java.util.*;
class pqr
{
public static void main(String ab[])
{
List<Integer> ts=new ArrayList<Integer>();
for(int i=0;i<10;i++)
ts.add((int)(Math.random()*1000));
System.out.println(ts);
class RSO implements Comparator<Integer>
{
public int compare(Integer i,Integer j)
{
return j-i;
}
}
RSO rs=new RSO();
Collections.sort(ts,rs);
System.out.println(ts);
Comparator fs=(Comparator<Integer>)Collections.reverseOrder(rs); // Same result with casting or without casting
Collections.sort(ts,fs);
System.out.println(ts);
}
}
这段代码给了我预期的结果,但是在编译时它显示了从末尾开始的第 5 行的以下警告消息:
Note: 5.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
无论有没有强制转换,我都会收到相同的警告,请帮助我删除警告。