假设ConfigDOConverter是处理的工具类,parse是处理方法,且parse返回的就是数组中某个元素的对象,那么处理方法如下:
'数组'.stream.map('工具类'::'方法名').collect(Collectors.toList());
例子如下:
public static List<Config> parse(final List<ConfigDO> configs) { if (CollectionUtils.isEmpty(configs)) { return ListUtils.EMPTY_LIST; } return configs.stream().map(ConfigDOConverter::parse).collect(Collectors.toList()); }