if(false) vs. while(false): unreachable code vs. dead code

心不动则不痛 提交于 2019-12-17 03:42:12

问题


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?


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/20299914/iffalse-vs-whilefalse-unreachable-code-vs-dead-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!