标签: java
假设我们有以下内容,如何将对象o下放到数组中?那是因为在我的代码中,我使用对象指针在某个时间指向某个对象,每个不同类型的对象。
Object obj = new int[4];
答案 0 :(得分:3)
Object o = new int[4]; int[] array = (int[]) o;