一、Construction代表类中的一个构造方法,这个类封装了类的定义。
其中包括了访问修饰符,方法名,参数列表。
二、Constructor的常用方法
1.String getName();获得方法名。
2.int getModifiers();获得修饰符。
3.Class[] getParamenterTypes();获得构造方法的参数类型。
4.newInstance(Object...args);使用当前的构造方法来创建一个对象。
三、如何获得Constructor
1.Constructor getConstructor(Class..c);获得某个公共的构造方法。
2.Constructor[] getConstructors();获得所有的构造方法。
3.Constructor getDeclaredConstructor(Class..c);获得某个构造方法。
4.Constructor[] getDeclaredConstructors();获得所有的构造方法。
例子:
//获得全部的构造方法
Constructor[] ct=c.getDeclaredConstructors();
for(Constructor cc:ct) {
System.out.println(cc);
}
System.out.println("--------------------------");
//获得全部公有的构造方法
Constructor[] ct1=c.getConstructors();
for(Constructor cc:ct1) {
System.out.println(cc);
}
System.out.println("--------------------------");
//获得指定的构造方法
Constructor ct2=c.getConstructor(Integer.class, Integer.class, String.class, Double.class, String.class);
System.out.println(ct2);