public class Test2 {
Telphone tel=new Telphone();
Telphone tell=new Telphone();
public static void main(String args[]){
if(tel.equals(tell)){
System.out.println("两个对象是相同的");
}else{
System.out.println("两个对象是不同的");
}
}
}
创建对象的引用时,是放在方法内部的,而你放在了方法的外部
为什么一定编译器要我把tel和tell对象加上static修饰符。