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


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



描述

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

聲明

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

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

參數

parameterTypes- 這是參數數組。

返回值

此方法返回具有指定參數列表的構造函數的 Constructor 對象。

異常

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

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

示例

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

package com.tutorialspoint;

import java.lang.reflect.*;

public class ClassDemo {

   public static void main(String[] args) {
    
      try {
         ClassDemo cls = new ClassDemo();
         Class c = cls.getClass();

         // constructor with arguments as Double and Long
         Class[] cArg = new Class[2];
         cArg[0] = Double.class;
         cArg[1] = Long.class;
         Constructor ct = c.getDeclaredConstructor(cArg);
         System.out.println("Constructor = " + ct.toString());
      } catch(NoSuchMethodException e) {
         System.out.println(e.toString());
      } catch(SecurityException e) {
         System.out.println(e.toString());
      }
   }

   private ClassDemo() {
      System.out.println("no argument constructor");
   }

   public ClassDemo(Double d, Long l) {
      this.d = d;
      this.l = l;
   }

   Double d = new Double(3.9d);
   Long l = new Long(7687);
}

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

no argument constructor
Constructor = public ClassDemo(java.lang.Double,java.lang.Long)

相關用法


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