vote up -4 vote down star

Is it a replacement for if, then blocks? I have seen a lot of code where they are used like that.

flag
1  
They are used for exception handling. Some people do try to use try-catch blocks for control flow but that is really not good practice. – BobbyShaftoe May 12 at 2:56

2 Answers

vote up 5 vote down check

No, it is not a replacement for an if, then block, it serves an entirely different purpose. The objective of a try, catch block is to try and do something which could fail and raise an exception (e.g., read a file from disk, but the file might not be there, etc.). After catching an exception, you can handle it.

try {
   riskyOperation();
catch (ExpectedException) {
   handleException();
}
link|flag
vote up 0 vote down

The purpose of try catch blocks to allow you to try to perform and action and then if an exception occurs, catch the exception and deal with it gracefully rather than crashing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.