1. 例外クラスの一般的な構造
2. Throwable は、すべての例外クラスのスーパー クラスです。 .
3. プログラム内でエラー(例外)が発生する可能性がある場合に使用し、キーを使用して例外をキャッチして処理します。 #4. キャッチ例外の構造は次のとおりです:
public void test() { int num1 = 10; int num2 = 0; try { System.out.println(num1 / num2); // try可能出现错误的语句块 } catch (Exception e) { // 异常类型 并实例化一个异常类型e,用来对出现的异常进行说明 e.printStackTrace(); // 如果出现错误执行catch里面内容,否则跳过catch语句块 } finally { System.out.println("永远都会被执行,(system.exit)特殊情况除外,");// 无论是否出现异常都会执行finally语句块 } }
public static void main(String[] args) { try { test(); //调用这个方法就必须捕获异常或者继续抛出异常 } catch (Exception e) { e.printStackTrace(); } } //方法定义的时候抛出了异常 public static void test() throws Exception { int num1 = 10; int num2 = 0; System.out.println(num1 / num2); }
public class ExceptionTest extends Exception{ @Override //这个是注解,表示这是重写的方法 public void printStackTrace() { System.out.println("自己定义的异常类"); System.out.println("尝试一下如果程序没有出现异常,强制抛出这个自定义异常,可不可以捕获"); } }
public class Main {
public static void main(String[] args) {
try {
test(); //调用这个方法尝试捕获自定义异常
} catch (ExceptionTest e) {
e.printStackTrace(); //自定义的异常类重写了printStackTrace这个方法
}
}
//继续往上抛出异常
public static void test() throws ExceptionTest{
throw new ExceptionTest(); //强制产生一个自定义的异常并往上抛
}
}
JAVA ビデオ チュートリアル
以上がJAVA例外クラス構造の詳細な説明(例付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。