List<Long> wareInsideCodes = wareCodes.stream().map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());
List<String>转List<Long>
最新推荐文章于 2024-08-25 17:01:08 发布
List<Long> wareInsideCodes = wareCodes.stream().map(s -> Long.parseLong(s.trim())).collect(Collectors.toList());