Java 程序可用于将列表转换为数组
List 对象提供一种称为 toArray() 的方法。此方法接受一个空数组作为自变量,将当前列表转换为一个数组并将其放入给定的数组中。将 List 对象转换为数组的步骤如下 −
- 创建一个 List 对象。
- 向其中添加元素。
- 使用所创建 ArrayList 的大小创建一个空数组。
- 使用 toArray() 方法,将列表转换为一个数组,同时将上述创建的数组作为自变量传递给它。
- 打印数组的内容。
示例
import java.util.ArrayList; public class ListToArray { public static void main(String args[]){ ArrayList<String> list = new ArrayList<String>(); list.add("Apple"); list.add("Orange"); list.add("Banana"); System.out.println("Contents of list ::"+list); String[] myArray = new String[list.size()]; list.toArray(myArray); for(int i=0; i<myArray.length; i++){ System.out.println("Element at the index "+i+" is ::"+myArray[i]); } } }
输出
Contents of list ::[Apple, Orange, Banana] Element at the index 0 is ::Apple Element at the index 1 is ::Orange Element at the index 2 is ::Banana
广告