本文共 336 字,大约阅读时间需要 1 分钟。
public interface Comparator{ * @param o1 the first object to be compared. * @param o2 the second object to be compared. * @return a negative integer, zero, or a positive integer as the * first argument is less than, equal to, or greater than the * second. */ int compare(T o1, T o2);}
转载地址:http://egrxi.baihongyu.com/