In this section, you will learn how to convert List to ArrayList.
Convert List to ArrayList
In this section, you will learn how to convert List to ArrayList.
Code Description:
This program helps you in converting List to ArrayList. Here we have taken a List of Colors or you can also take it as a queue as shown in the program. Then we have used a method i.e. "ListToArrList().convertFromQueueToList(); " to convert the list to ArrayList.
import java.util.ArrayList;
|
Output of the program:
C:\unique>javac ListToArrList.java C:\unique>java ListToArrList Mauve Peach Teal Rose C:\unique> |