怎么准确的提取出getConstructors()返回的Constructor[]数组元素?感觉用为什么脚标的排序跟我定义的顺序不同?如果不用脚标还有别的办法将我想要的构造提取出来么?代码如下:
- package reflect;
- import java.lang.reflect.Constructor;
- import java.lang.reflect.InvocationTargetException;
- class Test{
- private int i;
- public int getI(){
- return this.i;
- }
- public Test(){this.i=0;}//定义Test接收不同参数类型的构造方法
- public Test(int a){this.i=1;}
- public Test(String b){this.i=2;}
- public Test(int a,String b){this.i=3;}
- }
- public class ReflectDemo3 {
- public static void main(String[] args) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
- Constructor[] constructor=Test.class.getConstructors();
- for(Constructor c:constructor)
- System.out.println(c);
- }
- }
复制代码
运行结果:
public reflect.Test(java.lang.String)
public reflect.Test(int,java.lang.String)
public reflect.Test()
public reflect.Test(int)
跟我定义的顺序不同,既不是正数也不是倒数,那怎么才能准确定位Constructor[]中的元素呢? |