假设我有两个Arraylists。
a.add("Isabella");
a.add("Angelina");
a.add("Pille");
a.add("Hazem");
b.add("Isabella");
b.add("Angelina");
b.add("Bianca");
a.retainAll(b);
这应该给我带有以下元素的Arraylist:Isabella, Angelina, Pille, Hazem
。但是,当我尝试a.size()
时,我得到0.为什么?
我的输出:
[DEBUG] The Karate Kid
[DEBUG] The Day the Earth Stood Still
[DEBUG] The Pursuit of Happyness
[DEBUG] Justin Bieber: Never Say Never
[DEBUG] After Earth
[DEBUG] Independence Day
[DEBUG] Men in Black
[DEBUG] Men in Black II
[DEBUG] Hancock
[DEBUG] Shark Tale
[DEBUG] Made in America
[DEBUG] Six Degrees of Separation
[DEBUG] Jersey Girl
[DEBUG] The Legend of Bagger Vance
[DEBUG] Men in Black 3
[DEBUG] Seven Pounds
[DEBUG] Bad Boys II
[DEBUG] Bad Boys 3
[DEBUG] Enemy of the State
[DEBUG] Wild Wild West
[DEBUG] Hitch
[DEBUG] Ali
[DEBUG] I, Robot
[DEBUG] Live 8
[DEBUG] Where The Day Takes You
[DEBUG] Independence Day 3
[DEBUG] I, Robot 2
[DEBUG] The Pursuit of Happyness
[DEBUG] I Am Legend
[DEBUG] Independence Day 2
[DEBUG] After Earth
[DEBUG] Bad Boys
[DEBUG] Partners in Time: The Making of MIB 3
[DEBUG] David Blaine: Real or Magic
[DEBUG] Size: 0
第一部分是由杰登史密斯主演的电影,第二部分是由威尔史密斯主演的电影,我只想要同时拥有两部电影的电影。 retainAll()
是进行此类工作的最佳方法吗?
答案 0 :(得分:7)
我怀疑你是在列表而不是字符串中存储你自己的类的实例。
retainAll
使用equals
方法比较内容。如果您要存储自己类的实例,并且该类未覆盖equals
,则会比较引用。由于两个列表中没有相同的实例(而是包含相同值的不同实例),因此它将从第一个列表中删除所有电影。
您可以通过在班级中实施equals
来防止这种情况发生。为此,您可以查看this答案。