尝试创建Object数组,但得到“无法创建Object的通用数组”。
我尝试使用(Object [])进行投射,但这没有帮助。
public class Container<Object> {
Object start;
Container(Object start){
this.start=start;
}
LinkedList<Object> save = new LinkedList<>();
public Object[] toArray() {
Object[] test = (Object[]) new Object [3]; // cannot create here
for (int i=0; i<save.size(); i++)
{
...
}
}