freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

java語言第五章異常-資料下載頁

2025-05-11 22:26本頁面
  

【正文】 CCP 20 class ArraySizeException extends NegativeArraySizeException { /** 構(gòu)造方法。 */ ArraySizeException() { super(“您傳遞的數(shù)組大小非法 )。 } } 用戶自定義異常 22 示例: 示例 6 ?創(chuàng)建用戶自定義異常 ?繼承 Exception 或其子類 class ExceptionClass { ExceptionClass(int val) { size = val。 try { checkSize()。 } catch (ArraySizeException e) { (e)。 } } /** 聲明變量以存儲(chǔ)數(shù)組的大小和元素 . */ private int size。 private int[] array。 /** 檢查數(shù)組長度的方法 . * @ throws 一個(gè) ArraySizeException */ public void checkSize() throws ArraySizeException { if (size 0) { throw new ArraySizeException()。 } array = new int[3]。 for (int count = 0。 count 3。 count++) { array[count] = count + 1。 } } } class UserDefinedExceptions { /** 構(gòu)造方法 . */ protected UserDefinedExceptions() { } /** * 類和應(yīng)用程序的唯一入口點(diǎn) . * @param arg 字符串參數(shù)的數(shù)組 */ public static void main(String[] arg) { ExceptionClass obj = new ExceptionClass((arg[0]))。 } } ACCP 21 總結(jié) ?異常是運(yùn)行時(shí)發(fā)生的錯(cuò)誤 ?可以使用 try、 catch、 throw、 throws 和 finally 來管理 Java 異常處理。要監(jiān)控的程序語句包含在 try 塊內(nèi)catch 塊中的代碼用于捕獲和處理異常。在方法返回之前絕對必須執(zhí)行的代碼應(yīng)放置在 finally 塊中 ?要手動(dòng)引發(fā)異常,使用關(guān)鍵字 throw。任何被拋到方法外部的異常都必須用 throws 子句指定 ?多重 catch 和嵌套 trycatch的使用 ?自定義異常的編寫和使用
點(diǎn)擊復(fù)制文檔內(nèi)容
高考資料相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1