Java Class getDeclaredConstructor()方法
java.lang.Class.getDeclaredConstructor() 方法返回一个Constructor对象,它反映此Class对象所表示的类或接口指定的构造函数。parameterTypesparameter是确定构造函数的形参类型,在Class对象声明顺序的数组。
1 语法
public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException
2 参数
parameterTypes:这是参数数组。
3 返回值
此方法返回具有指定参数列表构造函数的构造函数对象。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Class getDeclaredConstructor()方法
*/
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)
热门文章
优秀文章