當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.lang.reflect.Method.getExceptionTypes()用法及代碼示例



描述

這個java.lang.reflect.Method.getExceptionTypes()方法返回一個 Class 對象數組,這些對象表示聲明為由此 Method 對象表示的底層方法拋出的異常類型。如果該方法在其 throws 子句中聲明沒有異常,則返回長度為 0 的數組。

聲明

以下是聲明java.lang.reflect.Method.getExceptionTypes()方法。

public Class<?>[] getExceptionTypes()

返回

聲明為由該對象表示的方法拋出的異常類型。

示例

下麵的例子展示了 java.lang.reflect.Method.getExceptionTypes() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.Method;

public class MethodDemo {

   public static void main(String[] args) {

      Method[] methods = SampleClass.class.getMethods();
      Class[] exceptions = methods[0].getExceptionTypes();
      for (int i = 0; i < exceptions.length; i++) {
         System.out.println(exceptions[i]);
      }
   }
}

class SampleClass {
   private String sampleField;

   public String getSampleField() throws ArrayIndexOutOfBoundsException{
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField; 
   } 
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

class java.lang.ArrayIndexOutOfBoundsException

相關用法


注:本文由純淨天空篩選整理自 java.lang.reflect.Method.getExceptionTypes() Method Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。