?? internable.java
字號:
package edu.stanford.nlp.util;/** * Internable: Interface for objects which are to be interned. * Such objects * should implement weakEquals and weakHashCode methods which are * used by the Interner to map them. Note that if an object also * provides an expensive equals and hashCode, these *will* still be * used by Java collections. * * @author Dan Klein * @version 1/3/01 */public interface Internable { public boolean weakEquals(Object o); public int weakHashCode();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -