Core Java
-

Box old objects to be autoclosable
Since Java 7 we can use try-with-resources and have any object automatically closed that implements the Autocloseable interface. If the…
Read More » -

Java: How to Slash Down Building Times Using the Cloud
Building larger Java projects on a laptop with Maven can be frustrating and slow. Learn how you could slash down…
Read More » -

Java Queue Interface
Introduction: A Queue is a FIFO (First In First Out) abstract data type (ADT). In other words, the elements are…
Read More » -

Java ArrayDeque
Introduction: ArrayDeque in Java is a class that implements a Deque interface. It’s an array-based implementation of a double-ended queue.…
Read More » -

PriorityBlockingQueue In Java
Introduction: A PriorityBlockingQueue in Java implements the BlockingQueue interface and supports the features of a PriorityQueue. So, what’s a BlockingQueue?…
Read More » -

Lazy assignment in Java
Programmers are inherently lazy and similis simili gaudet also like when the programs are lazy. Have you ever heard lazy…
Read More » -

LinkedHashMap In Java
Introduction: LinkedHashMap is a Map implementation which maintains the insertion order of its elements. It extends the HashMap class: public class…
Read More » -

Java Text Blocks
In the 13 May 2019 post “RFR: Multi-line String Literal (Preview) JEP [EG Draft]” on the OpenJDK amber-spec-experts mailing list,…
Read More » -

Java: How to Become More Productive with Hazelcast in Less Than 5 Minutes
What if you want to use a Hazelcast In-Memory Data Grid (IMDG) to speed up your database applications, but you…
Read More »
