Core Java
-
Deferred Execution with Java’s Predicate
In the previous posts “Deferred Execution with Java’s Supplier” and “Deferred Execution with Java’s Consumer“, I looked at easily deferring…
Read More » -
Reduce GC Overhead With These 5 Simple Hacks
Five simple ways to write code that’s more memory efficient, without spending more time on it or reducing code readability…
Read More » -
Applying New JDK 11 String Methods
In the posts “New Methods on Java String with JDK 11” and “String#repeat Coming to Java?“, I discussed six new…
Read More » -
Java 8 Stream examples
This post will help you to understand some of the important and frequently used Stream operations in Java 8 which…
Read More » -
Launch Single-File Source-Code Programs in JDK 11
JEP 330 – Launch Single-File Source-Code Programs is one of the exciting features in the upcoming JDK 11(18.9) release. This…
Read More » -
Java 8 map(), flatMap() examples
Using map () method When programming, it is very common, processing data in order to collect some information from a…
Read More » -
How to use filter() method in Java 8
Java 8 Stream interface introduces filter() method which can be used to filter out some elements from object collection based…
Read More » -
Java 8 Language Features in Nutshell – Part 2
Editorial Note: You can also check Part-1 here. Hi Friends, this is a part-2 of Java 8 Language Features in…
Read More » -
Java 8 Stream API Examples
Hello Friends, in this post, we will discuss Java 8 Stream API Examples. So what we are going to do…
Read More »