标题: 【上海校区】equals与==区别 [打印本页] 作者: 梦缠绕的时候 时间: 2018-9-20 11:59 标题: 【上海校区】equals与==区别 public class B {
private int i ;
public static void main(String[] args) {
B b1 = new B(10);
B b2 = new B(10);
//对象之间不能用== 来比较,比较的是对象的内存地址。
System.out.println(b1 == b2); //false
System.out.println(b1.equals(b2) ); //true,因为重写了equals方法
}