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


Java Java.lang.Class.getConstructor()用法及代碼示例



描述

這個java.lang.Class.getConstructor() 方法返回一個 Constructor 對象,該對象反映了此 Class 對象表示的類的指定公共構造函數。這parameterTypes參數是一個 Class 對象的數組,這些對象按聲明的順序標識構造函數的形式參數類型。

聲明

以下是聲明java.lang.Class.getConstructor()方法

public Constructor<T> getConstructor(Class<?>... parameterTypes)
   throws NoSuchMethodException, SecurityException

參數

parameterTypes- 這是參數數組。

返回值

此方法返回與指定參數類型匹配的公共構造函數的構造函數對象。

異常

  • NoSuchMethodException− 如果未找到匹配方法。

  • SecurityException− 如果存在安全管理器 s。

示例

下麵的例子展示了 java.lang.Class.getConstructor() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.*;

public class ClassDemo {

   public static void main(String[] args) {

      try {
         // returns the Constructor object of the public constructor
         Class cls[] = new Class[] { String.class };
         Constructor c = String.class.getConstructor(cls);
         System.out.println(c);
      } catch(Exception e) {
         System.out.println(e);
      } 
   }
}

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

public java.lang.String(java.lang.String)

相關用法


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