Home »
Java programming language
Java HashSet remove() Method with Example
HashSet Class remove() method: Here, we are going to learn about the remove() method of HashSet Class with its syntax and example.
Submitted by Preeti Jain, on March 05, 2020
HashSet Class remove() method
- remove() method is available in java.util package.
- remove() method is used to remove the given object (ob) from this HashSet when exists.
- remove() method is a non-static method, it is accessible with the class object only, and if we try to access the method with the class name then we will get an error.
- remove() method does not throw an exception at the time of removing the given object.
Syntax:
public boolean remove (Object ob);
Parameter(s):
- Object ob – represents the element to be removed from this HashSet.
Return value:
The return type of the method is boolean, it returns true when the given object is to be removed successfully otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean remove (Object ob) method of HashSet
import java.util.*;
public class RemoveOfHashSet {
public static void main(String[] args) {
// Instantiates a HashSet object
HashSet < String > hs = new HashSet < String > ();
// By using add() method is to add
// the given object of this
// HashSet
hs.add("C");
hs.add("C++");
hs.add("JAVA");
hs.add("PHP");
hs.add("SFDC");
// Display HashSet
System.out.println("HashSet: " + hs);
// By using remove() method is to
// remove the given object exists in
// this HashSet
boolean status = hs.remove("PHP");
// Display status
System.out.println("hs.remove(PHP): " + status);
// Display Modified HashSet
System.out.println("Modified HashSet: " + hs);
}
}
Output
HashSet: [JAVA, C++, C, SFDC, PHP]
hs.remove(PHP): true
Modified HashSet: [JAVA, C++, C, SFDC]