This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I am confused about the unreachable statements in java.It is said that to place assertions at the place which is unreachable is a good practice, but then again if assert statement is unreachable it gices compile-time error.I referred to JLS to understand the concept of unreachable statements, but sadly i don't have enough time to go through and understand everything as i have exam in few hours
Arvind Sampath
Ranch Hand
Joined: May 11, 2005
Posts: 144
posted
0
The key here is if the compiler is able to determine that a particular line/segment of code will not be reached during run time, it will flag an Unreachable Code error.
In the above code snippet, the compiler would determine that the last two statements would not be reached. Hence it flags an error.
It is said that to place assertions at the place which is unreachable is a good practice, but then again if assert statement is unreachable it gices compile-time error.
Well the authors of that statement would have most probably meant to put assertions at places which are unreachable logically. Yep, they meant your business logic.
Have a look at this snippet
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.