java checked & unchecked Exception

总结来说就是

checked exception是在compile time 检查的,unchecked exception是在run time 检查的。【通常由于bad input】

checked exception报错如果我们没有写try catch or Throws Exception.

unchecked exception报错 通常由于divide by 0 等等。所以unchecked exception也属于run time exception的一种

你可能感兴趣的:(java checked & unchecked Exception)