赞
踩
这不是最有效的解决方案,但最简洁的代码是:
boolean equalLists = listA.size() == listB.size() && listA.containsAll(listB);
更新:
@WesleyPorter是对的如果重复对象在集合中,上述解决方案将无法正常工作。
对于一个完整的解决方案,您需要迭代一个集合,从而正确处理重复的对象。
private static boolean cmp( List> l1, List> l2 ) {
// make a copy of the list so the original list is not changed, and remove() is supported
ArrayList> cp = new ArrayList<>( l1 );
for ( Object o : l2 ) {
if ( !cp.remove( o ) ) {
return false;
}
}
return cp.isEmpty();
}
2014年10月28日更新:
@RoeeGavriel是对的返回语句需要有条件。以上代码已更新。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。