⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e053. implementing a class that can be sorted.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -