JSRUN 用代码说话

Java方法反射

编辑教程

Java反射-Java方法反射

java.lang.reflect.Method 类的实例表示一个方法。 java.lang.reflect.Constructor 类的实例表示一个构造函数。

方法和构造方法继承自一个通用的抽象超类可执行。

透析文件中的参数由 Parameter 类的对象表示

Executable 类中的getParameters()方法获取所有参数作为 Parameter 的数组。

参数类的名称将变为arg0,arg1等。我们可以通过编译源来保存类文件中的实际参数名代码使用 -parameters 选项与 javac 编译器。

初始化文件中的 getExceptionTypes()方法类返回一个由可执行文件的异常数组。

Executableable的getModifiers()方法将修饰符作为int返回。

来自Executable类的getTypeParameters()方法返回一个TypeVariable数组,该数组表示通用方法或构造函数的类型参数。


例子

import java.lang.reflect.Constructor;
import java.lang.reflect.Executable;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Parameter;
import java.util.ArrayList;

class MyClass<T> {

  public MyClass(int i, int j, String s){

  }
  public MyClass(T t){

  }
  public int getInt(String a){
    return 0;
  }
}

public class Main {
  public static void main(String[] argv){
    Class<MyClass> cls = MyClass.class;
    for(Method m:cls.getMethods()){
      System.out.println(m.getName());
      System.out.println(getModifiers(m)); 
      System.out.println(getParameters(m) );
      System.out.println(getExceptionList(m));
    }
  }
  public static ArrayList<String> getParameters(Executable exec) {
    Parameter[] parms = exec.getParameters();
    ArrayList<String> parmList = new ArrayList<>();
    for (int i = 0; i < parms.length; i++) {

      int mod = parms[i].getModifiers() & Modifier.parameterModifiers();
      String modifiers = Modifier.toString(mod);
      String parmType = parms[i].getType().getSimpleName();
      String parmName = parms[i].getName();
      String temp = modifiers + "  " + parmType + "  " + parmName;
      if(temp.trim().length() == 0){
        continue;
      }
      parmList.add(temp.trim());
    }
    return parmList;
  }

  public static ArrayList<String> getExceptionList(Executable exec) {
    ArrayList<String> exceptionList = new ArrayList<>();
    for (Class<?> c : exec.getExceptionTypes()) {
      exceptionList.add(c.getSimpleName());
    }
    return exceptionList;
  }
  public static String getModifiers(Executable exec) {
    int mod = exec.getModifiers();
    if (exec instanceof Method) {
      mod = mod & Modifier.methodModifiers();
    } else if (exec instanceof Constructor) {
      mod = mod & Modifier.constructorModifiers();
    }
    return Modifier.toString(mod);
  }
}

上面的代码生成以下结果。

getInt
public
[]
[]
wait
public final
[]
[InterruptedException
wait
public final

反射方法

以下四个方法在类类中返回有关类的方法的信息:

Method[]  getMethods()
Method[]  getDeclaredMethods()
Method getMethod(String name,  Class...  parameterTypes)
Method getDeclaredMethod(String name,  Class...  parameterTypes)

getMethods()方法返回该类的所有可访问的公共方法无论从类中还是继承自超类。

getDeclaredMethods()方法返回所有只在中声明的方法该类(不包括从超类继承的方法)。

getMethod(字符串名称,Class ... parameterTypes)和getDeclaredMethod(字符串名称,Class ... parameterTypes)通过方法名和参数类型获取Method对象。

方法类中的getReturnType ()方法返回包含有关返回类型信息的类对象。

import java.lang.reflect.Constructor;
import java.lang.reflect.Executable;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Parameter;
import java.util.ArrayList;

class MyClass<T> {

  public MyClass(int i, int j, String s) {

  }

  public MyClass(T t) {

  }

  public int getInt(String a) {
    return 0;
  }
}

public class Main {
  public static void main(String[] args) {
    Class<MyClass> c = MyClass.class;

    ArrayList<String> methodsDesciption = getDeclaredMethodsList(c);
    System.out.println("Declared Methods  for " + c.getName());
    for (String desc : methodsDesciption) {
      System.out.println(desc);
    }
    methodsDesciption = getMethodsList(c);
    System.out.println("\nMethods for  " + c.getName());
    for (String desc : methodsDesciption) {
      System.out.println(desc);
    }

  }

  public static ArrayList<String> getMethodsList(Class c) {
    Method[] methods = c.getMethods();
    ArrayList<String> methodsList = getMethodsDesciption(methods);
    return methodsList;
  }

  public static ArrayList<String> getDeclaredMethodsList(Class c) {
    Method[] methods = c.getDeclaredMethods();
    ArrayList<String> methodsList = getMethodsDesciption(methods);
    return methodsList;
  }

  public static ArrayList<String> getMethodsDesciption(Method[] methods) {
    ArrayList<String> methodList = new ArrayList<>();

    for (Method m : methods) {
      String modifiers = getModifiers(m);

      Class returnType = m.getReturnType();
      String returnTypeName = returnType.getSimpleName();

      String methodName = m.getName();

      String params = getParameters(m).toString();

      String throwsClause = getExceptionList(m).toString();

      methodList.add(modifiers + "  " + returnTypeName + "  " + methodName
          + "(" + params + ") " + throwsClause);
    }

    return methodList;
  }

  public static ArrayList<String> getParameters(Executable exec) {
    Parameter[] parms = exec.getParameters();
    ArrayList<String> parmList = new ArrayList<>();
    for (int i = 0; i < parms.length; i++) {

      int mod = parms[i].getModifiers() & Modifier.parameterModifiers();
      String modifiers = Modifier.toString(mod);
      String parmType = parms[i].getType().getSimpleName();
      String parmName = parms[i].getName();
      String temp = modifiers + "  " + parmType + "  " + parmName;
      if (temp.trim().length() == 0) {
        continue;
      }
      parmList.add(temp.trim());
    }
    return parmList;
  }

  public static ArrayList<String> getExceptionList(Executable exec) {
    ArrayList<String> exceptionList = new ArrayList<>();
    for (Class<?> c : exec.getExceptionTypes()) {
      exceptionList.add(c.getSimpleName());
    }
    return exceptionList;
  }

  public static String getModifiers(Executable exec) {
    int mod = exec.getModifiers();
    if (exec instanceof Method) {
      mod = mod & Modifier.methodModifiers();
    } else if (exec instanceof Constructor) {
      mod = mod & Modifier.constructorModifiers();
    }
    return Modifier.toString(mod);
  }
}

上面的代码生成以下结果。

Declared Methods  for MyClass
public int getInt([String arg0])[]

 Methods  for MyClass
public int getInt([String arg0])[]
public final void wait([])[InterruptedException]
public final void wait([long  arg0.int arg1])[InterruptedException]
public final native void wait([long  arg0])[InterruptedException]
public boolean equals ([Object arg0])[]
public String to String([])[]
JSRUN闪电教程系统是国内最先开创的教程维护系统, 所有工程师都可以参与共同维护的闪电教程,让知识的积累变得统一完整、自成体系。 大家可以一起参与进共编,让零散的知识点帮助更多的人。
X
支付宝
9.99
无法付款,请点击这里
金额: 0
备注:
转账时请填写正确的金额和备注信息,到账由人工处理,可能需要较长时间
如有疑问请联系QQ:565830900
正在生成二维码, 此过程可能需要15秒钟