我想知道是否可以将 a 转换Object
为其他东西。
我有一个对象,其中包含一系列随机顺序的数字,例如:3、4、2、5、1,并且想知道我是否能够将其转换为 int[] 或从中选择某些元素,如序列中的数字?
编辑:所以我有一些代码是:
//This contains all the different combinations of the numbers
ArrayList routePop4 = new ArrayList();
//This picks out the first one, just as a test
Object test = routePop4.get(0);
但我的想法是我想遍历测试的每个元素。