The java.util.Set.remove(Object O) method is used to remove a particular element from a Set.
Syntax:
boolean remove(Object O)
Parameters: The parameter O is of the type of element maintained by this Set and specifies the element to be removed from the Set.
Return Value: This method returns True if the specified element is present in the Set otherwise it returns False.
Below program illustrate the java.util.Set.remove(Object O) method:
import java.util.*;
public class SetDemo {
public static void main(String args[])
{
Set<String> set = new HashSet<String>();
set.add( "Welcome" );
set.add( "To" );
set.add( "Geeks" );
set.add( "4" );
set.add( "Geeks" );
System.out.println( "Set: " + set);
set.remove( "Geeks" );
set.remove( "4" );
set.remove( "Welcome" );
System.out.println( "Set after removing elements: "
+ set);
}
}
|
Output:
Set: [4, Geeks, Welcome, To]
Set after removing elements: [To]
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#remove(java.lang.Object)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Dec, 2018
Like Article
Save Article