java List<P1View> 转数组
时间: 2023-07-19 08:26:14 浏览: 212
将 Java 的 List<P1View> 转换为数组可以使用 List 的 toArray() 方法。示例如下:
```
List<P1View> p1Views = new ArrayList<>();
// 添加元素到 p1Views 中
P1View[] p1ViewsArray = p1Views.toArray(new P1View[0]);
```
其中,`new P1View[0]` 指定了要转换的数组类型为 P1View 类型的数组,数组长度为 0。若数组长度不为 0,则会在 toArray() 方法内部创建一个新的数组,长度为 List 的大小,并将 List 中的元素复制到该数组中。
阅读全文