Is there a difference in writing:
throw SomeException;
and
throw(SomeException);
I have seen some sources that claim the latter (with parentheses) is not a good option for some reason but alas I can not recall where I’ve seen this.
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.
There should not be any functionality difference between the two expressions apart from the parentheses. I have never heard of any clear reason that says why one should be superior to the other.
To me the first option looks more intuitive as it does not include the unnecessary parentheses!
Also as @Pubby said in the comment, one should not confuse with the throw specifier which requires parentheses (
throwspecifier is probably deprecated).