java ArrayList数组列表 通过 toArray 转换为普通对象数组

package ArrayList;
import java.util.*;

public class what
{
public static void main(String [] args)
{
//用ArrayList创建数组列表,然后将数组列表用toArray拷贝到普通的对象数组中去

    ArrayList staff=new ArrayList<>();
    int i=0;
    while(i<6)
    {
        Employee e =new Employee();
        staff.add(e);
        ++i;
    }
    Employee[] all=new Employee[staff.size()];
    staff.toArray(all);
}

}这里写代码片

你可能感兴趣的:(java)