Java 8ラムダの実装は変更される可能性があることを認識していますが、ラムダビルドb39では、ラムダ式が非void型を返す場合にのみ中括弧を省略できることがわかりました。たとえば、これは次のようにコンパイルされます。
public class Collections8 {
public static void main(String[] args) {
Iterable<String> names = Arrays.asList("Alice", "Bob", "Charlie");
names.filter(e -> e.length() > 4).forEach(e -> { System.out.println(e); });
}
}
しかし、次のように中括弧を削除します。
names.filter(e -> e.length() > 4).forEach(e -> System.out.println(e));
エラーが発生します
Collections8.java:6: error: method forEach in interface Iterable<T> cannot be applied to given types;
names.filter(e -> e.length() > 4).forEach(e -> System.out.println(e));
^
required: Block<? super String>
found: lambda
reason: incompatible return type void in lambda expression
where T is a type-variable:
T extends Object declared in interface Iterable
誰かがここで何が起こっているのか説明できますか?