Why intellij let me replace lambda with method reference

前端 未结 0 548
情书的邮戳
情书的邮戳 2021-01-07 12:41

intellij let me replace

myList.stream().peek(x -> System.out.println(x));

with

myList.stream().peek(System.out::println); ?

相关标签:
回答
  • 消灭零回复
提交回复
热议问题