?? rule.java
字號:
import ItemSet;public class Rule{ private ItemSet myLhs; private ItemSet myRhs; private int mySupport; private float myConfidence; Rule( ItemSet lhs, ItemSet rhs, int support, float confidence ) { myLhs = lhs; myRhs = rhs; mySupport = support; myConfidence = confidence; } public ItemSet getLhs() { return myLhs; } public ItemSet getRhs() { return myRhs; } public int getSupport() { return mySupport; } public float getConfidence() { return myConfidence; } public String toString() { return( myLhs+"==>"+myRhs+" (confidence="+myConfidence+" support="+mySupport+")"); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -