What's in a List
Lists in Java

Search for a command to run...
Lists in Java

The new Sequenced Collection API

Java Types briefly explained and a bit of Kotlin at the end

From Java Beans to modern records

Introduction When creating a class in Java, there are three methods that are commonly overridden: equals() hashCode() toString() This article focuses on the hashCode() method. How a hash table wo

Introduction The == operator is used to compare references, while the equals method is used to compare the contents of objects. Comparison for predefined types Primitive types The comparison operator

Strategy Pattern for beginners

Introduction to Collectors Collect is an extremely useful terminal operation to transform the elements of the stream into a different kind of result, like a List, a Set or a Map. Java supports various built-in collectors via the Collectors class. A v...

The streams were introduced in my previous article. This is the second article in the series. Comparison-based stream operations We will explain several common methods, some of them were mentioned in
