naturalcomparator.java

来自「BOOK:Beginning Algorithms Code Example」· Java 代码 · 共 24 行

JAVA
24
字号
package com.wrox.algorithms.sorting;/** * A {@link Comparator} that compares objects that have a natural sort order, ie. implement {@link Comparable}. * */public final class NaturalComparator implements Comparator {    /** The single, publicly accessible, instance of the comparator. */    public static final NaturalComparator INSTANCE = new NaturalComparator();    /**     * Constructor marked private to prevent instantiation.     */    private NaturalComparator() {    }    public int compare(Object left, Object right) throws ClassCastException {        assert left != null : "left can't be null";        assert right != null : "right can't be null";        return ((Comparable) left).compareTo(right);    }}

⌨️ 快捷键说明

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