ArrayList_toArray

Posted 简简单单zjl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ArrayList_toArray相关的知识,希望对你有一定的参考价值。

package com.day15.collection;

import java.util.ArrayList;
import java.util.Collection;

public class Array_toArray {

  public static void main(String[] args) {
    Collection c=new ArrayList();
    c.add(1);//支持自动装箱,事实上将1转换成了字符串对象
    c.add("k");
    c.add("o");
    Object[] arr=c.toArray();//将元素转成数组
    for (int i = 0; i < arr.length; i++) {
      if(i==arr.length-1) {System.out.println(arr[i]);}//o
      else {System.out.print(arr[i]+",");}//1,k,
    }
  }
}
//最后输出1,k,o

以上是关于ArrayList_toArray的主要内容,如果未能解决你的问题,请参考以下文章