收集对象数组的属性列表

时间:2018-03-18 17:22:20

标签: java android

我需要一个列表o String PersonName来自班级Person class。我想将List<Person>导出到包含List<String>的{​​{1}}但是我无法使用流和收集器,因为我的最小Api是21.我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

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

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