当前位置: 技术问答>java相关
java.lang.Comparable接口有什么用?应该怎么用?
来源: 互联网 发布时间:2015-03-21
本文导语: public class SL275 implements Comparable { public static void main(String[] args) { } public int compareTo(Object o) throws ClassCastException { } } 哪位能把这个程序补充完整啊? | ...
public class SL275 implements Comparable
{
public static void main(String[] args)
{
}
public int compareTo(Object o) throws ClassCastException
{
}
}
哪位能把这个程序补充完整啊?
{
public static void main(String[] args)
{
}
public int compareTo(Object o) throws ClassCastException
{
}
}
哪位能把这个程序补充完整啊?
|
public class SL275 implements Comparable
{
public static void main(String[] args)
{
}
int aValue;
public int compareTo(Object o) throws ClassCastException
{
SL275 temp= (SL275)o
return aValue - o.aValue;
}
}
用于集合排序
SortedSet set = new TreeSet(new SL275());
set.add(..)
set.add(..)
set中的元素回调compareTo进行排序
{
public static void main(String[] args)
{
}
int aValue;
public int compareTo(Object o) throws ClassCastException
{
SL275 temp= (SL275)o
return aValue - o.aValue;
}
}
用于集合排序
SortedSet set = new TreeSet(new SL275());
set.add(..)
set.add(..)
set中的元素回调compareTo进行排序