?? weighted.java
字號:
package edu.stanford.nlp.util;
/** Weighted. An interface for representing a weighted things, such as
* a feature (as opposed to a probability/score).
*
* @author Christopher Manning
* @version 2002/06/12
*/
public interface Weighted {
/** Return the weight of this thing
* @return the weight
*/
public double weight();
/** Set the weight of this thing
* @param weight the weight
*/
public void setWeight(double weight);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -