我需要一个列表o String PersonName
来自班级Person class
。我想将List<Person>
导出到包含List<String>
的{{1}}但是我无法使用流和收集器,因为我的最小Api是21.我怎么能这样做?
答案 0 :(得分:2)
你甚至不需要溪流,一个简单的命令式方法是:
List<String> namesAccumulator = new ArrayList<>();
for(Person person : myPeopleList)
namesAccumulator.add(person.getName());