relatable.java

来自「JAVA 工作指南 可以说是程序员必备的东西哦」· Java 代码 · 共 11 行

JAVA
11
字号

public interface Relatable {
	
   // this (object calling isLargerThan) and
   // other must be instances of the same class
   // returns 1, 0, -1 if this is greater
   // than, equal to, or less than other
   public int isLargerThan(Relatable other);
   
}

⌨️ 快捷键说明

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