?? sortfunction.java
字號:
package shared;
import java.lang.*;
/** Sort method interface.
*/
public interface SortFunction{
//added by JL
//based on LEDA
/** The comparison method used for sorting functions.
* @param num1 The first object compared.
* @param num2 The second object compared.
* @return TRUE if num1 "is less than" num2 in priority.
*/
public boolean is_less_than(Object num1, Object num2);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -