public boolean equals(Object obj){
if(this==obj)
return true;
if(obj==null)
return false;
if(getClass()!=obj.getClass())
Telephone other=(Telephone)obj;
if(CPU!=other.CPU)
}
sunyx
相关分类