0
我有Stream<SortedSet<String>>
,我想只有一個Stream<String>
。我嘗試使用flatMap()
,但它不起作用,因爲它無法平整Sortedset流。如何使用Stream.flatMap()?
String productName = "p1";
Set<Product> products = new HashSet<>();
products.add(new Product(productName));
Stream<SortedSet<String>> sortedSetStream = products.stream().map(p -> Util.getProductNames(p));