testbitmask.java
来自「用C编写的数据挖掘的相关算法」· Java 代码 · 共 22 行
JAVA
22 行
package chc;/** used to test the bitmask during development of chc. */public class TestBitMask { /** Constructed a new bit mask and then printed out the * size and the values of all the masks. The values should * correspond to those found in the MLJ-Options.file. */ public static void main(String[] args) { BitMask bm = new BitMask(); System.out.println(bm.size()); System.out.println(bm.getDisplayString()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?