反射-获取四种权限的方法
Method.getModifiers()获取方法的权限值 和调用方法
默认权限 0 class.getDeclaredMethod(String name//方法名称).invoke(new class()//类实例对象);
protected 4 class.getDeclaredMethod(String name//方法名称).invoke(new class()//类实例对象);
private 2 Method method= class.getDeclaredMethod(String name//方法名称);
method.setAccessible(true);
method.invoke(new class()//类实例对象);
public 1 class.getMethod(String name//方法名称).invoke(new class()//类实例对象);
|
|