Unreachable statement compile error in Java [dupli

2020-01-31 03:32发布

class For1
{
  public static void main(String args[])
  {
    int a = 0;
    for(;;)
    {
      break;
      System.out.println(a); //Line 1
      ++a;//Line 2
    }
  }
}

I know that Line 1/Line 2 will never be executed. But still I don't understand why a compile time error is thrown. I am getting "unreachable statement" compile error.

Does it mean that compiler checks whether it is able to compile for all branches/lines of code ?

6条回答
Anthone
2楼-- · 2020-01-31 04:12

Does it mean that compiler checks whether it is able to compile for all branches/lines of code ?

It means the compiler checks that every statement is reachable.

From section 14.21 of the JLS:

It is a compile-time error if a statement cannot be executed because it is unreachable.

This section is devoted to a precise explanation of the word "reachable." The idea is that there must be some possible execution path from the beginning of the constructor, method, instance initializer, or static initializer that contains the statement to the statement itself. The analysis takes into account the structure of statements.

The section then documents how reachability is defined.

In particular, the relevant points in your case are:

Every other statement S in a non-empty block that is not a switch block is reachable iff the statement preceding S can complete normally.

A break, continue, return, or throw statement cannot complete normally.

So your "line 1" statement is preceded by a statement (break;) which cannot complete normally, and therefore it's unreachable.

查看更多
可以哭但决不认输i
3楼-- · 2020-01-31 04:16

The compiler is also able to make that conclusion, and assumes you are making a mistake. And yes, the Java compiler does a pretty good amount of "Data-Flow Analysis". The most common related message is the one about variables not initialized. The second most frequent is, I believe, precisely this one, about code not reachable.

查看更多
ら.Afraid
4楼-- · 2020-01-31 04:21

Does it mean that compiler checks whether it is able to compile for all branches/lines of code ?

Yes compiler compiles the whole body of code and make byte code according to your code, it smarter enough to detects unreachable code also dead code. Immediate break in the for-loop makes unreachable other statements.

for(;;){
   break;
   ... // unreachable statement
}


int i=1;
if(i==1)
  ...
else
  ... // dead code
查看更多
成全新的幸福
5楼-- · 2020-01-31 04:33

Unreachable code is meaningless and redundant. If you have some unreachable code in your program it is a mistake and needs to be fixed. Hence compiler throws an error.

You can refer to similar questions below

Unreachable code: error or warning? and Why does Java have an "unreachable statement" compiler error?

查看更多
相关推荐>>
6楼-- · 2020-01-31 04:33

The compiler will check if there is more code after certain keywords. Another keyword which will cause a similar message is if you replace break by return.

查看更多
萌系小妹纸
7楼-- · 2020-01-31 04:35

The compiler is able to determine that these two statement will never, ever be executed, and helps you write correct code by refusing to compile it, because this has 99.9% chance of being an error rather than a conscious choice to add statements that will never be executed.

查看更多
登录 后发表回答