现在使用 java-8,我将一些显式声明转换为 lambda 表达式并得到编译器错误。因此怀疑这是当前 java-8 版本(b105)的“错误”。
示例代码定义了使用和不使用 lambda 表达式的两个 Function 对象。两者都依赖于这些函数使用的谓词。虽然传统实现有效,但 lambda 版本报告错误:
java: 变量 fileExists 可能尚未初始化
这不是完全错误的,但是如果使用函数而不是创建函数本身,则谓词是相关的(因为显式版本运行良好)。我应该报告错误(有人有链接吗?)还是我错过了什么?
public class FileOpener {
public FileOpener(Predicate<File> fileExists) {
this.fileExists = fileExists;
}
final Predicate<File> fileExists;
final Function<File, FileInputStream> openLambda = file -> {
try {
return fileExists.test(file) ? new FileInputStream(file) : null;
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
};
// this version compiles
final Function<File, FileInputStream> openFunction = new Function<File, FileInputStream>() {
@Override
public FileInputStream apply(File file) {
try {
return fileExists.test(file) ? new FileInputStream(file) : null;
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
}
};
}