//获取list<Table> 中 某个字段的集合 List<String> tableNames = allById.stream().map(Table::getTableName).collect(Collectors.toList()); //获取list<Table> 中 某个字段的集合,并且去重 List<String> tableNames = allById.stream().map(Table::getTableName).collect(Collectors.toList()).stream().distinct().collect(Collectors.toList());
list对象获取单个属性(并且去重)
最新推荐文章于 2024-09-22 08:59:36 发布