在下面的代码中:
myList.stream() .filter(item -> someMethod(item)) .map(item -> doSomething(item)) .collect(Collectors.toList());
RuntimeException如果过滤器的结果是大小为 0 的列表(即没有项目通过过滤器),我该如何抛出 a ?
RuntimeException
aluckdog
慕桂英3389331
相关分类