Home Tutorial Java Core Hashset Example of contains method of hashset in java.

 
 

Example of contains method of hashset in java.
Posted on: April 4, 2011 at 12:00 AM
Example of contains method of hashset in java.

Example of contains method of hashset in java.

The contains() is a method of hashset. It is used for checking that the given number is available in hashset or not. It returns only boolean value.If number is present in hashset, it returns true otherwise false.

Code

HashSetToArray .java

package net.roseindia;

import java.util.HashSet;

public class HashSetToArray {

public static void main(String[] arg) {

HashSet obHashSet = new HashSet();

obHashSet.add(new Integer(1));

obHashSet.add(new Integer(2));

obHashSet.add(new Integer(3));

obHashSet.add(new Integer(4));

System.out.println("All Elements in HashSet : " + obHashSet);

/*Check element is present or not in Hash set */

boolean b=obHashSet.contains(new Integer(3));

System.out.println("Result : "+ b);

}

}

Output :

All Elements in HashSet : [1, 2, 3, 4]

Result : true

Related Tags for Example of contains method of hashset in java.:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.