2

我是 lambdaj 的新手。对于 Java 编程来说,这似乎是一个很棒的功能。

所以我创建了一个非常简单的评估程序。

但我对下面的代码有一个例外。你能帮我看看有什么问题吗?

--EDITED添加了为类 X 封装的无参数构造函数和公共变量。感谢@AVD。

import java.util.Arrays;
import java.util.List;

import static ch.lambdaj.Lambda.having;
import static ch.lambdaj.Lambda.on;
import static ch.lambdaj.Lambda.select;

public class Main {

    private static class X {
        private String name;
        public X(){
        }
        public X(String name) {
            this.name = name;
        }

        public String getName() {
            return name;
        }

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

    public static void main(String[] args) {
        List<X> xs = Arrays.asList(
                new X("aaa"),
                new X("aaa"),
                new X("bbb")
        );

        List<X> s = select(xs, having(on(X.class).getName().equals("aaa")));

    }
}

结果是:

Exception in thread "main" ch.lambdaj.function.argument.ArgumentConversionException: Unable to convert the placeholder false in a valid argument
    at ch.lambdaj.function.argument.ArgumentsFactory.actualArgument(ArgumentsFactory.java:92)
    at ch.lambdaj.function.matcher.HasArgumentWithValue.havingValue(HasArgumentWithValue.java:70)
    at ch.lambdaj.function.matcher.HasArgumentWithValue.havingValue(HasArgumentWithValue.java:58)
    at ch.lambdaj.Lambda.having(Lambda.java:1193)
    at Main.main(Main.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
4

1 回答 1

4

用这种方式改变你的表情

List<X> s = select(xs, having(on(X.class).getName(), Matchers.equalTo("aaa")));

它会起作用。

只有在

on(X.class).getName()

直接返回一个布尔值,例如

List<X> s = select(xs, having(on(X.class).isLowerCaseString());

如果所有名称字母都是小写,则返回 trueisLowerCaseString()的方法在哪里。X

于 2012-04-13T12:26:19.467 回答