称心小松鼠

文章
3
资源
0
加入时间
3年0月20天

java嵌套循环_在Java中打破嵌套循环

问题我有这样的嵌套循环结构:for (Type type : types) {for (Type t : types2) {if (some condition) {// Do something and break...break; // Breaks out of the inner loop}}}现在我怎么能摆脱两个循环。我看过类似的问题,但没有一个关于Java。由于大多数使用gotos,我...