gpt4 book ai didi

java - 收集对象数组的属性列表

转载 作者:行者123 更新时间:2023-11-29 18:59:49 24 4
gpt4 key购买 nike

我需要一个像String PersonName这样的字符串列表从类 Person class .我要导出 List<Person>List<String>包含 PersonName但是我不能使用 Stream 和 Collector,因为我的最小 Api 是 21。我该怎么做?

最佳答案

为此你甚至不需要流,一个简单的命令式方法是:

List<String> namesAccumulator = new ArrayList<>();
for(Person person : myPeopleList)
namesAccumulator.add(person.getName());

关于java - 收集对象数组的属性列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49350790/

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