异常exception包括
1.受检异常:
异常必须处理,要么try{}catch(){},要么throws 方法抛出去此异常
IOException FileNotFoundException
2.非受检异常(运行时异常 ):
异常可以不处理
RunTimeException
NullPointException ArrayIndexOutofBoundException
异常exception包括
1.受检异常:
异常必须处理,要么try{}catch(){},要么throws 方法抛出去此异常
IOException FileNotFoundException
2.非受检异常(运行时异常 ):
异常可以不处理
RunTimeException
NullPointException ArrayIndexOutofBoundException