All about Generics: Part 1
Java requires to specify types in all aspects of its code, methods, fields, interface etc, however, still, with generics a piece of code can …

Syed Mainul Hasan
6,012 viewsJava requires to specify types in all aspects of its code, methods, fields, interface etc, however, still, with generics a piece of code can …

A N M Bazlur Rahman
33,414 viewsAfter many discussions with Java developers, combined with my personal experiences with the Java community and platform, here are the key …

A N M Bazlur Rahman
21,769 viewsToday I will make an attempt to appreciate how unique the JVM is. So, let’s begin the journey to how Java works!

A N M Bazlur Rahman
4,017 viewsWhat happens if the child-task creates more tasks and the parent-task waits for the child-tasks to finish in TheadPool in java.

Carl Dea
17,625 viewsimagine C code capable of performing a computation and after its completion the C code will notify Java code to perform updates to JavaFX …

Nicolas Frankel
3,500 viewsAlmost all Java developers are familiar with logging frameworks like Log4j, but not the System.Logger that has been available since java 9.

A N M Bazlur Rahman
6,796 viewsWhat is the maximum number of worker threads we can put in a ThreadPool? Let's find out today on Foojay's amazing Java threading series!

A N M Bazlur Rahman
6,218 viewsLet's find out what are the ways to create ThreadPool using Executor framework in java and use result-bearing tasks using Callable and …

A N M Bazlur Rahman
4,695 viewsLearn how to ask the executor framework at startup to provision threads for us and they will be reused as long as the application runs.

Deepu K Sasidharan
3,748 viewsPattern matching is a language feature where you can test for a specific pattern on a character sequence or a data structure.