for (Set<Integer> s : SetUtils.powerSet(mySet))


我尝试运行上述代码,但未找到SetUtils变量。
我正在使用Java 1.8。

我应该导入什么来运行以上语句?

最佳答案

您应该导入org.apache.commons.collections4.SetUtils

如果您的IDE没有处理添加库,请参见此
How do I learn to use Java commons-collections?了解如何在您的项目中使用它。

您可以从apache site找到所需的jar文件。

09-29 19:19