Skip to content
Advertisement

Scope of do-while loop?

In Java, the body of a do-while loop and the loop condition do not belong to the same scope. So the following code won’t compile:

do {
    boolean b = false;
} while (b); // b cannot be resolved to a variable

But this code does make sense to me.

Also, I cannot find any pitfalls if the body and the condition are in the same scope; since the body will always get executed, and Java does not have Goto, I don’t know how a variable declaration in the outermost do-while body scope could be skipped. Even if it is possible, the compiler could always detect such possibility and then produce compile time errors.

Is there any reason for this behavior (aside from keeping the do-while loop in the same format as while)? I am really curious. Thanks for any inputs!

Advertisement

Answer

Because that’s one way scope is defined in Java; inside {} is a new scope.

IMO it wouldn’t make much sense to special-case a single construct.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement