📄 testclean.java
字号:
package chc;public class TestClean { private static Hypothesis[] hypo = new Hypothesis[10]; private static int[] iii = {1,1,1,1,1,1,1,1}; private static Hypothesis h = new Hypothesis(0, iii); public static void main(String[] args) { hypo[0] = h; for (int i = 1; i < hypo.length; i++) { hypo[i] = null; } hypo = CHC.cleanHypo(hypo); System.out.println(hypo.length); for (int i = 0; i < hypo.length; i++) { hypo[i].displayHypothesis(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -