equal重写模板
因为懒,记录下equal重写的简单模板。
@Override
public class Elem{
public boolean equals(Object obj){
if(obj==null){
return false;
}
if(this==obj){
return true;
}
if(! obj instanceof Elem){
return false;
}
Elem other = (Elem)obj;
// TODO
}
}