Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

Many a time when I'm debugging I feel quite lazy and often want to stop execution of code within a method before that method actually ends. The naive solution is to put in a return statement or throw an exception at the point where you want to stop running your code. Of course this doesn't work if you have lines of code after your return/throw clause.

The compiler will throw an error if you try this...
error: unreachable statement


...and a mandatory screenshot of the error...
unreachablehack_1.png


Now you may be tempted to simply comment out the remaining lines, but depending on how much code you've got that could be more effort that it's worth.

So here's my solution to this. Put in an if statement that always evaluates to true and in the body of this statement either return from the method or throw an exception. This is a simple non-intrusive short circuit of the code, just remember to remove it when you're done with your debugging!

It looks something like this...
 Code
if (1 == 1) {
return;
}

unreachablehack_2.png


Now the compiler will not complain and your code will exit early as required.



-i

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.