News

Java includes various mechanisms for iteration, including index (for iterating over an array), cursor (for iterating over the results of a database query), enumeration (in early versions of Java ...
java collections A Collection in simple terms means when a group of similar things, often a group created by someone is known as a collection. A collection when collected works like a container ...
Learn about new Java 8 features in Eclipse Collections, a high performance Java Collections framework, and see some of the new things we’ve done to prepare for Java 9.
Java Garbage Collection remains a topic of major interest even after 25 years. Many developers are still confused about the fundamentals, even of the most widely-used implementation (Parallel).
One of the nasty little traps a Java developer can run into occurs when Collection.contains(Object) is not used with appropriate understanding. I demonstrate this potential trap in this post.
The Java Platform provides the most commonly used data structures in the form of the Collections Framework, and it provides a rich API to operate on them. This article explains the concepts behind ...