可以用 java 中使用反射的方法引用替换
Can be replaced with method reference using reflection in java
我在 intellij 中有这段代码:
return collection.stream().anyMatch(annotation ->
method.isAnnotationPresent(annotation));
编译器告诉我 "method.isAnnotationPresent(annotation)" 可以用方法引用替换,但我不知道该怎么做,因为它有一个参数。
有人知道怎么做吗?
我在 intellij 中有这段代码:
return collection.stream().anyMatch(annotation ->
method.isAnnotationPresent(annotation));
编译器告诉我 "method.isAnnotationPresent(annotation)" 可以用方法引用替换,但我不知道该怎么做,因为它有一个参数。
有人知道怎么做吗?