我正在尝试制作一个可以比较任何类型的元素的比较器。我不确定如何创建课程。我只是想让它比较相同类型的两个元素(但无论客户端给它什么类型,例如:整数、字符串、双精度等),看看哪个比另一个更大。
public class InsertionComparator implements Comparator<T>
{
/**
* Compares two elements.
*
* @param f1 The first element you want to compare.
* @param f2 The second element you want to compare.
* @return -1,0,1 Whether or not one is greater than, less than,
* or equal to one another.
*/
public int compare(<T> element1,<T> element2)
{
if(element1 < element2)
{
return -1;
}
else
{
if(element1 > element2)
{
return 1;
}
else
{
return 0;
}
}
}
}
请帮忙,谢谢!