Does adding parentheses around a throw argument have any effect?

左心房为你撑大大i 提交于 2020-03-12 03:15:04

问题


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.


回答1:


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 (throw specifier is probably deprecated).



来源:https://stackoverflow.com/questions/14321163/does-adding-parentheses-around-a-throw-argument-have-any-effect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!