请问这段代码的运行结果以及执行过程是怎样的?
请问这段代码的运行结果以及执行过程是怎样的?publicclassEqualOrNot{publicstaticvoidmain(Stringargs[]){Bb1=ne...
请问这段代码的运行结果以及执行过程是怎样的?public class EqualOrNot {
public static void main(String args[]) {
B b1 = new B(5);
B b2 = new B(5);
System.out.println(b1 == b2);
System.out.println(b1.equals(b2));
}
}
class B {
int x;
B(int y) {
x = y;
}
} 展开
public static void main(String args[]) {
B b1 = new B(5);
B b2 = new B(5);
System.out.println(b1 == b2);
System.out.println(b1.equals(b2));
}
}
class B {
int x;
B(int y) {
x = y;
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询