修改ArrayList中的重复项

时间:2015-01-22 09:26:59

标签: java arraylist

我有一个名为Feeds的类,其中包含许多成员变量。其中包括date类型的变量String。我实现了ArrayList Feeds并按顺序添加对象。

我想要做的是搜索具有相同日期String的对象,如果出现次数超过1,则重复日期String变为""(空)但是你仍然会有一个具有该日期字符串完整的对象。

这样的事情:

Object1 (date : "01-01-2015");
Object2 (date : "01-01-2015");
Object3 (date : "04-01-2015");

//after the required code

Object1 (date : "01-01-2015");
Object2 (date : "");
Object3 (date : "04-01-2015");

List<Feeds> mFeeds = new ArrayList<Feeds>();
//add objects to list
mFeeds.add(...);

for(Feeds f : mFeeds){
   //search for objects that have the same date
   //skip the first repeatable and make the rest empty ""
}

2 个答案:

答案 0 :(得分:3)

您可以使用HashSet<String>来确定您是否已经遇到日期:

Set<String> dups = new HashSet<> ();
for(Feeds f : mFeeds) {
    if (dups.contains(f.getDate())
        f.setDate(null); // this date already appeared in the list, so set it to null
    else
        dups.add(f.getDate()); // this is the first occurrence of this date
}

答案 1 :(得分:1)

在Java 8中,单行:

Set<String> dups = mFeeds.stream().map(f -> f.getDate()).collect(Collectors.toSet());