A Guide to Java HashMap

2021 VietMX 0

1. Overview In this article, we’ll see how to use HashMap in Java, and we’ll look at how it works internally. A class very similar to HashMap is Hashtable. Please […]

A Guide to HashSet in Java

2021 VietMX 0

1. Overview In this article, we’ll dive into HashSet. It’s one of the most popular Set implementations as well as an integral part of the Java Collections Framework. 2. […]

A Guide to TreeSet in Java

2021 VietMX 0

1. Overview In this article, we’ll have a look at an integral part of the Java Collections Framework and one of the most popular Set implementations – the TreeSet. […]

Java List UnsupportedOperationException

2021 VietMX 0

1. Overview In this quick tutorial, we’ll discuss a common Exception that can occur when working with some the API of most List implementations – the UnsupportedOperationException. A java.util.List has more functionality than […]

Partition a List in Java

2021 VietMX 0

1. Overview In this tutorial I will illustrate how to split a List into several sublists of a given size. For a relatively simple operation, there is […]