gpt4 book ai didi

java - 从列表中对象的特定字段创建数组

转载 作者:行者123 更新时间:2023-11-29 08:58:34 24 4
gpt4 key购买 nike

我不太确定如何正确表达。我有一个对象列表,这些对象有特定字段的 setter/getter 。我现在需要从 ojbect 列表中创建一个数组,但我只需要一个特定的数据。

有没有办法不使用看起来非常低效的交互器来做到这一点?

这是在 android 应用程序的上下文中。

最佳答案

    // our original list
List<Integer> list = new ArrayList<Integer>();

// inserting some values
for(int i = 0;i<100;i++){
list.add(i);
}

// work starts here :

// select a range of elements based on index
List<Integer> subList = list.subList(0, 50);
// list.subList(from index-inclusive,to index-exclusive)

// create an array to hold your new values
Integer[] myArray = new Integer[0]; // must initialize

// assign the part of your original list to this array
myArray = subList.toArray(myArray);


// test Result :
System.out.println(Arrays.toString(myArray));
// reult :
/*
* [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
* 11, 12, 13, 14, 15, 16, 17, 18, 19,
* 20, 21, 22, 23, 24, 25, 26, 27, 28,
* 29, 30, 31, 32, 33, 34, 35, 36, 37,
* 38, 39, 40, 41, 42, 43, 44, 45, 46,
* 47, 48, 49]
*/

// hope this was what you were looking for

关于java - 从列表中对象的特定字段创建数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18904471/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com