Java
HashMap vs Hashtable vs HashSet in Java [Practical Examples]
HashMap is hash table based implementation of Map interface, Hashtable class implements a hash table, which maps keys to values. HashSet is a hash table based …
ArrayList vs LinkedList in Java [Practical Examples]
The ArrayList class implements a List Interface. So, this acts as a list. While the LinkedList class implements both List and Deque Interface. So, this acts as …
LinkedList in Java Explained [Complete Tutorial]
In Java, the LinkedList class is a member of Java Collections Framework present in java.util package. This class implements List interface along with other …
3 ways to convert CHAR to INT in Java [Practical Examples]
There are 3 methods to convert char to int in java i.e ASCII values, getNumericalValue, ParseInt using ValueOf method.
List vs LinkedList in Java Explained [Practical Examples]
In Java, List is an interface in java.util package whereas LinkedList is a class in the java.util package. Both of this data structure is used to store the …
