Question

Below will be compilation fail due to "label z is missing" but if I just move z: to one step below after o = o + 2 then that will work? What is the logic behind this?

public class Breaker {
static String o = "";

public static void main(String[] args) {
z: 
o = o + 2;
for (int x = 3; x < 8; x++) {
    if (x == 4)
    break;
    if (x == 6)
    break z;
    o = o + x;
}
System.out.println(o);
}
}
Was it helpful?

Solution

You cannot put the labels everywhere in the code. it should be only before statements. in this case labelname: for(;;){} Here's the documentation

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top