gpt4 book ai didi

java - 将 List 转换为 List 的最佳方法是什么

转载 作者:行者123 更新时间:2023-11-29 03:43:43 29 4
gpt4 key购买 nike

哪个是最好的转换方法目前我正在使用如下所示

List<Byte> bytes = new ArrayList<Byte>();
List<Object> integers = Arrays.asList(bytes.toArray());

然后整数中的每个对象都需要类型转换为整数。有没有其他方法可以实现这一目标?

最佳答案

使用标准的 JDK,这里是如何做到的

List<Byte> bytes = new ArrayList<Byte>();
// [...] Fill the bytes list somehow

List<Integer> integers = new ArrayList<Integer>();
for (Byte b : bytes) {
integers.add(b == null ? null : b.intValue());
}

如果您确定,bytes 中没有任何null 值:

for (byte b : bytes) {
integers.add((int) b);
}

关于java - 将 List<Byte> 转换为 List<Integer> 的最佳方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11986078/

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