LinkedHashSet

Remove element from LinkedHashSet example

In this example we shall show you how to remove an element from a LinkedHashSet, using the remove(Object o) method of LinkedHashSet. To remove an element from a LinkedHashSet one should perform the following steps:

  • Create a new LinkedHashSet.
  • Populate the set with elements, using the add(E e) API method of LinkedHashSet.
  • Remove an element from the set, using remove(Object o) API method of LinkedHashSet. The method removes the specified element from the set, if the set contains that element and returns true,

as described in the code snippet below.

package com.javacodegeeks.snippets.core;

import java.util.LinkedHashSet;
 
public class RemoveElementLinkedHashSet {
 
  public static void main(String[] args) {
 
    // Create a LinkedHashSet and populate it with elements
    LinkedHashSet linkedHashSet = new LinkedHashSet();
    linkedHashSet.add("element_1");
    linkedHashSet.add("element_2");
    linkedHashSet.add("element_3");

    System.out.println("LinkedHashSet contents : " + linkedHashSet);

    // boolean remove(Object o) method removes the specific object from the LinkedHashSet if present and returns true, false otherwise
    boolean removed = linkedHashSet.remove("element_2");
  
    System.out.println("LinkedHashSet contents after removal of element_2 : " + linkedHashSet);

  }
}

Output:

LinkedHashSet contents : [element_1, element_2, element_3]
LinkedHashSet contents after removal of element_2 : [element_1, element_3]

 
This was an example of how to remove an element from a LinkedHashSet in Java.

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Abhishek Tripathi
Abhishek Tripathi
5 years ago

what if we don’t know about element and want to delete on the basis of index

Back to top button