Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following program has no importance of its own. It just counts the number of objects created through the use of a for loop using a static field inside the class Counter as shown below.

package temp;

final class Counter
{
    private static int cnt;

    public Counter()
    {
        cnt++;
    }

    public static int show()
    {
        return(cnt);
    }
}

final public class Main
{
    public static void main(String[] args)
    {
        for (int i=0;i<50;i++)
        {
            Counter counter=new Counter();
        }

        /*for (int i=0;i<50;i++)
            Counter counter=new Counter();*/

        System.out.print("\nNumber of objects constructed:->"+Counter.show()+"\n\n");
    }
}

The only question here is that the commented for loop means the same as the above for loop (the same thing is also applied to a while loop) doesn't work at all causing a compile-time error that indicates that "not a statement" means that in this particular situation, the pair of braces are mandatory even though the for loop contains only one statement! Why?

share|improve this question
Could you post the error please? – Shakedown Nov 16 '11 at 1:54
@Shakedown The error is that the Counter c = new Counter(); line in the commented loops is "not a statement" – Jesus Ramos Nov 16 '11 at 1:55
@Shakedown:) I'm using NetBeans that just underlines a red curly line that indicates that "not a statement and some more". Uncommenting the above for loop and running the program is not possible at all. – Lion Nov 16 '11 at 2:00

4 Answers

up vote 20 down vote accepted

To understand why this happens, you have to look at Java's Blocks and Statements syntax in the language specification.

A ForStatement is defined as:

ForStatement:
    for ( ForInitopt ; Expressionopt ; ForUpdateopt )
        Statement

Statement is defined as:

Statement:
    StatementWithoutTrailingSubstatement
    LabeledStatement
    IfThenStatement
    IfThenElseStatement
    WhileStatement
    ForStatement

StatementWithoutTrailingSubstatement:
    Block
    EmptyStatement
    ExpressionStatement
    SwitchStatement
    DoStatement
    BreakStatement
    ContinueStatement
    ReturnStatement
    SynchronizedStatement
    ThrowStatement
    TryStatement

Then, looking at Block:

Block:
    { BlockStatementsopt }

BlockStatements:
    BlockStatement
    BlockStatements BlockStatement

BlockStatement:
    LocalVariableDeclarationStatement
    ClassDeclaration
    Statement

You'll notice that, within this specification, LocalVariableDeclarationStatement is not valid unless it is in a block. But, because the ForStatement requires that it is followed by a statement, there MUST exist parenthesis in order to make the expression valid. As such, any local variable declaration would be invalid in the loop without the brackets.

share|improve this answer
+1 for digging it out of the JLS. – Brian Roach Nov 16 '11 at 2:00
2  
JasCav has it right. A declaration statement is not the same as a standard imperative statement, and cannot stand alone as a loop body (and likely not as the body of if/else). – Hot Licks Nov 16 '11 at 2:01

Because you're creating a scope variable. Java is telling you that this does nothing because all it does is allocate memory and as soon as the loop goes through again you lose that one and make a new one. Essentially the entire loop is a NOP which is why it's telling you that it reduces to a do nothing statement.

By the loop being a NOP I mean that the declaration in the loop is a NOP.

The reason the version with the braces work is because the compiler doesn't inspect the usage within the scope because there are braces. It's probably something to do with the parse tree generated from one line statements vs. the parse tree created when there's a full loop scope.

share|improve this answer
2  
+1 To be more clear, it's because the compiler knows you're doing nothing in the second case and tells you. In the first it doesn't. – Brian Roach Nov 16 '11 at 1:55
2  
That's not true. The constructor increments a static counter, so new Counter() has side-effects and is not a NO-OP – Shakedown Nov 16 '11 at 1:56
2  
It's funny that this doesn't work - not that I'm saying it's bad, but that the compiler would optimize away something that can clearly have a side-effect. – Steve B. Nov 16 '11 at 1:58
3  
Yeah...I don't think this answer is correct. The compiler is not COMPILING this statement - an error is being thrown. If a statement was not useful (a no-op), it would generate warnings (unless of course you set your compiler to throw warnings). However, if you take a look at my answer, you'll see that @Lion's statement isn't valid per Java language specs and that is why the compiler is failing. – JasCav Nov 16 '11 at 1:59
1  
@Shakedown - sorry, I should have said "doing nothing with the assignment". See JasCav's answer - there's a specific restriction in the spec. – Brian Roach Nov 16 '11 at 2:01
show 2 more comments

@JasCav is right, however you can get it to compile:

for (int i=0;i<50;i++)
    new Counter();
share|improve this answer
Yep, this works because it's not a declaration. – Hot Licks Nov 16 '11 at 2:01

You can also get it to work without braces this way:

Counter counter;
    for (int i = 0; i < 50; i++)
    counter = new Counter();

Not that there's any reason you'd ever want to do such a thing. Leaving off the brackets is a really bad idea because adding a statement actually makes the control flow change.

share|improve this answer
+1 for leaving off the braces being a bad idea. Same for if statements. Only do it if you're going to place the "body" on the same line as the for/if as a sort of signal for what you've done. – Hot Licks Nov 16 '11 at 12:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.