Method References in Java 8
In the previous post, I discussed what lambda-expressions are. In this post, I will explain the concept of method references brought about in Java 8.
Sometimes there is already a method that you’d like to pass on to some other code. Of course, you could…