Monday, 2 January 2017

Why there is checked and unchecked exception in Java








Why is the two exception types in Java named "checked" and "unchecked"? What is the reason behind choosing this type of exceptions ?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...