📄 test.java
字号:
package chc;public class Test {
public static void main(String[] args) {
int [] one = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1};
Hypothesis hypo1 = new Hypothesis(1,one);
Hypothesis hypo2 = hypo1;
Hypothesis hypo3 = new Hypothesis(1,one);
if (hypo1 == hypo2) {
System.out.println("yeah babe");
}
if (hypo1==hypo3) {
System.out.println("AHHHHHHHHHHHHHHHHHHH");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -