Converting an Array to a Collection
Here is the illustration for the conversion from the an array to a collection. In this section, you will learn how how to do this. The given example gives you a brief introduction for converting an array to collection without losing any data or element held by the array.
This program creates an array, that contains all the elements entered by you. This array is converted into a list (collection). Every value for the separate subscript of the array will be converted as elements of the list (collection).
Code Description:
Arrays.asList(name):
Above code converts an array to a collection. This method takes the name of
the array as a parameter which has to be converted.
for(String li: list):
This is the for-each loop. There are two arguments mentioned in the loop. In
which, first is the String type variable li another one is the list name
which has to be converted. This loop check each and every elements of the list
and store it into the mentioned variable li.
Here is the code of the program:
import java.util.*;
|