30
Come uscire dai loop nidificati in Java?
Ho un costrutto di loop nidificato come questo: for (Type type : types) { for (Type t : types2) { if (some condition) { // Do something and break... break; // Breaks out of the inner loop } } } Ora come posso uscire da entrambi i loop? Ho esaminato …
1819
java
loops
nested-loops