加入我想从一个包含Person对象的List中取出所有人的性命,并返回List
personList.stream().map(Person::getName).collect(Collectors.toList());
personList.stream().map(Person::getName).toArray(String[]::new);
使用Java 8 Stream api 取出一组对象的某个属性,并返回List或Array对象本文访问次数:0
加入我想从一个包含Person对象的List中取出所有人的性命,并返回List
personList.stream().map(Person::getName).collect(Collectors.toList());
personList.stream().map(Person::getName).toArray(String[]::new);
需要输入验证码才能留言