Sometimes when you are debugging, you have unreachable code fragment. Is there anyway to suppress the warning?
|
The only way to do this on any compiler is If you're using Eclipse, try |
||||
|
|
Java has (primitive) support for debugging like this in that simple
Likewise, if you are temporarily inserting an early termination for debugging, you might do it like so:
or
And note that the Java specification explicitly declares that constantly false conditional blocks are removed at compile time, and IIRC, constantly true ones have the condition removed. This includes such as:
|
|||||||
|
|
Personally, I would remove the unreachable code. It seems to me that you are intending to check this code fragment in with the unreachable code in place, and because of that, you want to suppress the warnings. I tend to be a stickler for keeping my code clean, and this would make me scream if I found it checked in. I would have no issues with this code being used for debugging purposes, which is sounds like you might be, but if it is for debugging only, is there really a need to suppress the warning? |
|||||
|
|
As Cletus tells us,
That said, at least for Eclipse, there is not a way to do this. With my Eclipse configuration, unreachable code causes a compile-time error, not just a warning. Also note this is different from "dead code," e.g.
for which Eclipse (by default) emits a warning, not an error. |
||||
|
|
|
According to the Java Language Specification:
You can sometimes turn unreachable code into dead code (e.g., the body of |
||||
|
|
if (false) ..., for debugging. Nothing wrong with that. – Daniel May 17 '11 at 1:39