Open In App

LinkedHashSet toArray() method in Java with Example

Last Updated : 24 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The toArray() method of Java LinkedHashSet is used to form an array of the same elements as that of the LinkedHashSet. Basically, it copies all the element from a LinkedHashSet to a new array. Syntax:
Object[] arr = LinkedHashSet.toArray()
Parameters: The method does not take any parameters. Return Value: The method returns an array containing the elements similar to the LinkedHashSet. Below programs illustrate the LinkedHashSet.toArray() method: Program 1:
Output:
The LinkedHashSet: [Welcome, To, Geeks, For]
The array is:
Welcome
To
Geeks
For
Program 2:
Output:
The LinkedHashSet: [10, 15, 30, 20, 5, 25]
The array is:
10
15
30
20
5
25

Next Article

Similar Reads