package Numberten;public class telephone extends Telephone_f{ public static void main(String[] args){ telephone t1 =new telephone(); telephone t2=new telephone(); t1.size=10; t1.cpu=11; t1.mem=12; t2.cpu=11; t2.size=10; t2.mem=12; if(t1.equals(t2)){ System.out.println("BINGO"); }else{ System.out.println("Crap"); } } }無法重寫equals()方法 ,編譯器報錯:there are no non-static fields in this class.Cannot create equals() and hashCode() methods.但是我明明已經(jīng)創(chuàng)建實(shí)例對象了。
JAVA新手菜鳥問題
慕粉1473725030
2016-10-17 21:21:35