e053. implementing a class that can be sorted.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 10 行

TXT
10
字号
In order for a class to be used in a sorted collection such as a SortedTree or for it to be sortable by Collections.sort(), the class must implement Comparable. 
    public class MyClass implements Comparable {
        public int compareTo(Object o) {
            // If this < o, return a negative value
            // If this = o, return 0
            // If this > o, return a positive value
        }
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?