最佳答案
给定一个类型为Element[]
的数组:
Element[] array = {new Element(1), new Element(2), new Element(3)};
如何将此数组转换为类型#0的对象?
ArrayList<Element> arrayList = ???;