I have seen some developers use the return statement in a catch block. Why/when would this be a useful technique to employ?
EDIT: I actually just saw the return keyword being used.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
when return; is hit, the execution flow jumps out of the function. This can only be done on void methods.
EDIT: you do this if you don’t want to execute the rest of the function. For example, if you are doing file IO and a read error happens, you don’t want to execute code that handles processing the data in that file since you don’t have it.