在 Java 8 中迭代枚举
2022-08-31 12:32:56
是否可以使用 Lambda 表达式迭代 ?以下代码片段的 Lambda 表示形式是什么:Enumeration
Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();
while (nets.hasMoreElements()) {
NetworkInterface networkInterface = nets.nextElement();
}
我没有在其中找到任何流。