标签:
@Override public boolean equals(Object another) { if (this == another) { return true; } if (another instanceof QueryPerfEntry) { QueryPerfEntry anotherEntry = (QueryPerfEntry) another; boolean tempResult = tid == anotherEntry.tid && tag.equals(anotherEntry.tag) && group.equals(anotherEntry.group) && exkey == anotherEntry.exkey; return tempResult; } return false; }
标签:
原文地址:http://www.cnblogs.com/zhiqixue/p/5151853.html