增强的 for 循环中的空值检查
在 Java 中防止 for 循环中的 null 的最佳方法是什么?
这看起来很丑陋:
if (someList != null) {
for (Object object : someList) {
// do whatever
}
}
或
if (someList == null) {
return; // Or throw ex
}
for (Object object : someList) {
// do whatever
}
可能没有任何其他方法。他们应该把它放在构造本身中,如果它是空的,那么不要运行循环?for