Improved Collections in Java 21
The new Sequenced Collection API
Apr 2, 20266 min read51

Search for a command to run...
Articles tagged with #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
