Home >Java >javaTutorial >Java Example - Array to Collection
The following example demonstrates using the Arrays.asList(name) method of the Java Util class to convert an array into a collection:
/* author by w3cschool.cc ArrayToCollection.java */import java.util.*;import java.io.*;public class ArrayToCollection{ public static void main(String args[]) throws IOException{ int n = 5; // 5 个元素 String[] name = new String[n]; for(int i = 0; i < n; i++){ name[i] = String.valueOf(i); } List<String> list = Arrays.asList(name); System.out.println(); for(String li: list){ String str = li; System.out.print(str + " "); } }}
The output result of running the above code is:
0 1 2 3 4
above It is the content of Java Example - Array to Collection. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!