VOOZH about

URL: https://www.geeksforgeeks.org/java/linkedhashset-add-method-in-java-with-examples/

⇱ LinkedHashSet add() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

LinkedHashSet add() method in Java with Examples

Last Updated : 30 Sep, 2019
The add() method in Java LinkedHashSet is used to add a specific element into a LinkedHashSet. This method will add the element only if the specified element is not present in the LinkedHashSet else the function will return False if the element is already present in the LinkedHashSet. Syntax:
Hash_Set.add(Object element)
Parameters: The parameter element is of the type LinkedHashSet and refers to the element to be added to the Set. Return Value: The function returns True if the element is not present in the LinkedHashSet otherwise False if the element is already present in the LinkedHashSet. Below program illustrate the Java.util.LinkedHashSet.add() method:
Output:
LinkedHashSet: [Welcome, To, Geeks, 4]
Comment
Article Tags: