Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Eclipse 项目中使用 lamdaj 并且需要进行此导入,
import static ch.lamdaj.Lambda.*;
我在 Eclipse 的jar文件夹中下载并添加了 lambdaj-2.4-with-dependencies.jar ,如下所示,
然后,在 Java 构建路径中添加 JAR,如下所示,
我还需要做什么来完成这项工作?
项目设置正确。编译错误是由 import 语句中的拼写错误引起的。
请将导入语句更改为 import static ch.lambdaj.Lambda.*;
import static ch.lambdaj.Lambda.*;