there is a possibility to b can be false, so local variable x could not be initialize before it get use.
compiler make sure that x will get initialize here. so no error.
here after the exception, code cannot be reached.hence error.
[I am not sure]I think this is because of java compiler(javac) dont have pre-processor
Steli Niculescu
Greenhorn
Joined: Jul 14, 2009
Posts: 14
posted
0
Yes, I'm not sure either, actually my question was only for the last code sample. I thought the compiler is sure that the exception will be thrown and the last statement will be unreachable, but it seems that's not true.
Lester Burnham
Rancher
Joined: Oct 14, 2008
Posts: 1337
posted
0
It may be easy for a human being to spot that the last two code examples are identical, but it's not so easy for a compiler. You could make its analysis of which code will definitely be executed (or which won't) as complex as you want, and it will still miss opportunities for proving that some code can't be reached. It has to draw the line somewhere, and that line seems to be trying to prove the constant-ness of "if" condition values.
It would be very annoying to get unreachable statement errors if Debug.enabled is set to false.
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." --- Martin Fowler
Please correct my English.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: The strange ways of compile time constants