?? thresholdinfo.java
字號:
package shared;
import java.lang.*;
/** Class structure used for maitaining threshold information in
* Entropy to make score arrays.
*/
public class ThresholdInfo {
/** The index of this threshold.
*/
public int index;
/** The score value for this particular threshold.
*/
public double score;
/** The weight of this particular threshold.
*/
public double weight;
/** Constructor.
*/
public ThresholdInfo(){
index = Globals.UNDEFINED_INT;
score = Globals.UNDEFINED_REAL;
weight = Globals.UNDEFINED_REAL;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -