📄 sortable.java
字号:
/*** This code was written by Kent Paul Dolan, from knowledge of good** programming practice. See accompanying file TravellerDoc.html for** status for your use.*/package com.well.www.user.xanthian.java.structures;import com.coyotegulch.tools.*;public interface Sortable{ public static final int THIS_LESS_THAN = -1; public static final int THIS_EQUAL_TO = 0; public static final int THIS_GREATER_THAN = 1; public int compareTo( Object that ); public void swap( Object object_1 , Object object_2 );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -