12

我有一个项目列表,我想找到一个具有布尔属性(字段变量)的项目列表x=true

我知道这可以通过迭代来完成,但我一直在寻找一种通用方法来在像 Apache Commons 这样的公共库中做到这一点。

4

5 回答 5

21

您可以使用 apache commons 集合为它实现 Predicate。

http://commons.apache.org/collections/apidocs/org/apache/commons/collections/CollectionUtils.html

样本:

package snippet;

import java.util.Arrays;
import java.util.Collection;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Predicate;

public class TestCollection {

    public static class User {

        private String name;

        public User(String name) {
            super();
            this.name = name;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        @Override
        public String toString() {
            return "User [name=" + name + "]";
        }

    }

    public static void main(String[] args) {
        Collection<User> users = Arrays.asList(new User("User Name 1"), new User("User Name 2"), new User("Another User"));
        Predicate predicate = new Predicate() {

            public boolean evaluate(Object object) {
                return ((User) object).getName().startsWith("User");
            }
        };
        Collection filtered = CollectionUtils.select(users, predicate);
        System.out.println(filtered);
    }
}

可以在这里找到一些示例:http: //apachecommonstipsandtricks.blogspot.de/2009/01/examples-of-functors-transformers.html

如果您需要更通用的东西,例如检查特定字段或属性的值,您可以执行以下操作:

public static class MyPredicate implements Predicate {

    private Object expected;
    private String propertyName;

    public MyPredicate(String propertyName, Object expected) {
        super();
        this.propertyName = propertyName;
        this.expected = expected;
    }

    public boolean evaluate(Object object) {
        try {
            return expected.equals(PropertyUtils.getProperty(object, propertyName));
        } catch (Exception e) {
            return false;
        }
    }

}

这可以将特定属性与预期值进行比较,其用途类似于:

Collection filtered = CollectionUtils.select(users, new MyPredicate("name", "User Name 2"));
于 2012-06-11T12:57:11.540 回答
11

问题在于 Java 中的迭代通常更简单、更清晰。也许 Java 8 的闭包会解决这个问题。;)

与@Spaeth 的解决方案进行比较。

List<String> mixedup = Arrays.asList("A", "0", "B", "C", "1", "D", "F", "3");
List<String> numbersOnlyList = new ArrayList<>();
for (String s : mixedup) {
    try {
        // here you could evaluate you property or field
        Integer.valueOf(s);
        numbersOnlyList.add(s);
    } catch (NumberFormatException ignored) {
    }
}
System.out.println("Results of the iterated List: " + numbersOnlyList);

如您所见,它更短更简洁。

于 2012-06-11T13:10:22.017 回答
4

您可以使用Google guavafilter方法来执行此操作。Commons也有filter方法

于 2012-06-11T12:58:33.557 回答
4
List<Foo> result = foos.stream()
  .filter(el -> el.x == true)
  .collect(Collectors.toList());

https://www.mkyong.com/java8/java-8-streams-filter-examples/

于 2017-03-03T10:39:27.793 回答
1

为了实现这一点,在 java 中,您可以覆盖 hashCode 和 equals 方法 -

例如

@Override
public int hashCode() {
    return eventId;
}

@Override
public boolean equals(Object obj) {
    if(obj instanceof CompanyTimelineView) {
        CompanyTimelineView new_name = (CompanyTimelineView) obj;
        if(new_name.eventId.intValue() == this.eventId.intValue()){
            return true;
        }
    }
    return false;
}

在这个例子中,我已经处理了 eventId 整数值。你可以在这里使用你的班级和他的财产。在此之后,您可以使用列表的 contains、indexOf、lastIndexOf 和 get 方法在列表中查找元素。见下文。

//tempObj is nothing but an empty object containing the essential properties
//tempObj should posses all the properties that are being compared in equals method.

if(listOfObj.contains(tempObj)){
    return listOfObj.get(listOfObj.indexOf(tempObj));
}
于 2012-06-11T12:58:04.987 回答