📄 mycomparator.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package sortTable;import java.util.Comparator;/** * * @author Administrator */public class MyComparator implements Comparator { public int compare(Object o1, Object o2) { if(o1==null&&o2==null) return 0; else if(o1==null){ return -1; }else if(o2==null){ return 1; } return o1.toString().compareTo(o2.toString()); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -