異常處理方式throws

DemoLiQi發表於2024-06-24


將異常一層層往上拋,相當於模擬jvm操作,但是導致其他功能都無法使用,所以開發中無法一直throws
如果造成的異常存在異常子父類關係 只用丟擲父類異常就可以 比如FileNotFoundException,IOException異常,FileNotFoundException是IOException的子異常 所以丟擲IOException即可

相關文章