A look at Netbeans support for upcoming language enhancements in Java 8

While I was working on the samples for this post using the Nebeans nightly builds with support for Lambda Expressions downloaded from here. I found that the IDE gave good suggestions for converting the code to use the Java 8 support as and where possible. For example I had a small piece of code:

List<Person> olderThan30OldWay = new ArrayList<>();
for ( Person p : personList){
  if ( p.age >= 30){
    olderThan30OldWay.add(p);
  }
}
System.out.println(olderThan30OldWay);

and the IDE showed an yellow line under the for and provided a hint as shown in the screenshot below:
Functional_Hint
and using the hint resulted in the following code being added in place of the above code:

List<Person> olderThan30OldWay = new ArrayList<>();
personList.stream().filter((p) -> ( p.age >= 30)).forEach((p) -> {
  olderThan30OldWay.add(p);
});
System.out.println(olderThan30OldWay);

This is going to be really useful for people to identify where the code can be replaced by Lambda Expression. A more detailed intent of experimenting with the above sample can be found in my previous post here.

1 thought on “A look at Netbeans support for upcoming language enhancements in Java 8”

Leave a Reply

Discover more from Experiences Unlimited

Subscribe now to keep reading and get access to the full archive.

Continue reading