throws關鍵字

throws關鍵字主要是在方法定義上使用的,表示的是此方法之中不進行異常的處理,而交給被調用處處理。 class MyMath { public int div(int x,int y) throws Exception { return x / y ; } } 現在的div()方法之中拋了一個異常出來,表示的是,所有的異常交給被調用處進行處理。 class MyMath {
相關文章
相關標籤/搜索