码迷,mamicode.com
首页 > 编程语言 > 详细

如何自己自定义重写TreeSet的排序方法

时间:2019-10-10 18:42:29      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:obj   eset   oid   ring   重写   custom   font   int   string   

 

package priv.sex.set;

import java.util.Comparator;
import java.util.TreeSet;

class Mycompore implements Comparator {
public int compare(Object object1,Object object2) {
String s1=(String)object1;
String s2=(String)object2;
return s1.length()-s2.length();

}


}
public class CustomTreeSetDemo implements Tool{
public static void main(String[] args) {
TreeSet treeSet =new TreeSet(new Mycompore());
treeSet.add("qwer");
treeSet.add("asdfg");
treeSet.add("as");
treeSet.add("2");
Tool.IteratorPrint(treeSet);

}
}

如何自己自定义重写TreeSet的排序方法

标签:obj   eset   oid   ring   重写   custom   font   int   string   

原文地址:https://www.cnblogs.com/this-is-me55/p/11649831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!