30

I tried the following in Eclipse:

  • if (false) {}: warning 'dead code'
  • while (false) {}: compilation error 'unreachable code'

I was wondering whether there is a real 'reason' for this difference. I already found this...

Unreachable code compiler error

...but why not allow while (false) for the same debugging purpose?

Community
  • 1
  • 1
luukburger
  • 637
  • 6
  • 14

3 Answers3

33

The JLS section on unreachable code explains the rationale. Essentially, Java normally shouldn't use conditional compilation like C routinely does with #ifdef, but there are some situations (such as debugging, and in particular backward binary compatibility) where allowing the compiler to entirely strip out code is needed, and so the specific construct if(false) is permitted for that purpose.

chrylis -cautiouslyoptimistic-
  • 75,269
  • 21
  • 115
  • 152
9

You must read the Unreachable Statements. Although with while(false) the compiler will throw an error but with if(false) it wil show a warning to the user.

Although if (false) was kept in Java to simulate C/C++ preprocessor #if 0

The specification says that:

if (false) { x=3; }

does not result in a compile-time error. An optimizing compiler may realize that the statement x=3; will never be executed and may choose to omit the code for that statement from the generated class file, but the statement x=3; is not regarded as "unreachable" in the technical sense specified here.

The rationale for this differing treatment is to allow programmers to define "flag variables" such as:

static final boolean DEBUG = false; and then write code such as:

if (DEBUG) { x=3; } The idea is that it should be possible to change the value of DEBUG from false to true or from true to false and then compile the code correctly with no other changes to the program text.

Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331
  • 1
    The compiler won't throw an error for `if (false {}`. That's the point. – luukburger Nov 30 '13 at 12:00
  • I still have the downvote because the compiler will *not* raise an error in the case of `if(false)`. – chrylis -cautiouslyoptimistic- Nov 30 '13 at 12:00
  • 1
    @RahulTripathi `while(false)` is a compile-time error. `if(false)` *may* produce a warning but is explicitly *not* a compile-time error. – chrylis -cautiouslyoptimistic- Nov 30 '13 at 12:05
  • @luukburger:- Yes you are correct. I got it wrong. I have updated my answer and the rationale why the compiler will not throw an error! – Rahul Tripathi Nov 30 '13 at 12:17
  • It's worth noting that `if (compileTimeConstant) {...}` makes sense as a construct, and `while(true) {...}` and `do {...} while(compileTimeConstant)` make sense, but `while(compileTimeConstant) {...}` doesn't make sense in any case [other than the literal-`true` one] that couldn't be better written as `if (compileTimeConstant) { while(true) {} }`. – supercat Jan 24 '14 at 17:34
0

However, the 'do-while loop' will compile and execute.

do {
    System.out.println("its work!");
} while (false);                       //compile and execute
Java bee
  • 2,522
  • 1
  • 12
  • 25