In this post we will see different ways we can iterate through a map , HashMap and TreeMAp in Java.
Continue readingCategory: hashset
Initialize HashMap In Java
In previous post we have learn java about java hashmap with example . In this article we will see how
Continue readingHow to check HashSet Empty Or not
To check Set/HashSet is empty or not we use isEmpty() method . HashSet isEmpty() method returns true if this set
Continue readingHow to count number of element in HashSet
In order to count number of element in Set/HashSet , use size() method. Set.size() method returns the number of elements
Continue readingJava HashSet contains Method With Examples
In this tutorial we will learn about java HashSet contains method . HashSet.contains() method is used to check given element
Continue readingConvert Hashset To Array In Java
In this tutorial we will see how to convert HashSet to array in java. We will use two approaches convert
Continue readingHashSet removeAll() method in java
In this tutorial we will learn about hashset removeAll() method in Java. removeAll() method of HashSet class removes from this
Continue readingHow to remove all element from HashSet
We can remove all element from HashSet using clear() method . Clear () method of set removes all of the
Continue readingHashSet Remove Method in Java
In this tutorial we will learn about HashSet remove method in java . Java HashSet remove method use to remove
Continue readingJava HashSet addall() Method
In this tutorial we will learn about java Hashset addall() method . Hashset.addAll() method used to adds all of the
Continue reading