hasset java code example
Example 1: hashset contains java
HashSet<Integer> set = new HashSet<Integer>();
set.contains(110)//public boolean contains(Object o)
Example 2: hashset in java
Let’s see java hashset example.
import java.util.HashSet;
public class HashSetExample
{
public static void main(String[] args)
{
HashSet<String> hs = new HashSet<>();
hs.add("Banana");
hs.add("Orange");
hs.add("Apple");
hs.add("Pineapple");
hs.add("Mango");
System.out.println(hs);
}
}
Example 3: java hashset
HashSet<String> hset = new HashSet<String>();
// Adding elements to the HashSet
hset.add("Apple");
hset.add("Mango");