Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说得很清楚。我想使用快速排序算法,但我的一位朋友说我可以使用比较器,但我不知道如何使用。
您必须创建一个比较器:
Comparator<String> comparator = new Comparator<String>() { public int compare(String s1, String s2) { return s1.compareTo(s2); } };
使用此比较器,您将能够按字母顺序对数据进行排序。
之后创建排序器并传递此比较器和 JTable 模型。
然后:
sorter.sort();
我认为在那之后您的数据将被排序。