当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。