反射(Reflection)

什么是反射

反射就是在运行时把 Java 类中的各种成分映射成相应的 Java 类(Method、Annotation等),可以动态得获取所有的属性以及动态调用任意一个方法。


this

class A{
    public A(){
        System.out.println(this.toString() + ";;;;" + this.getClass().getName());
    }
}

class B extends A{
    public B() {
        System.out.println(this.toString() + ";;;;" + super.getClass().getName());
    }
}

public class C extends B{
    public C() {
        System.out.println(this.toString() + ";;;;" + this.getClass().getName());
    }
    
    public static void main(String[] args) {
        C c = new C();        
    }
    
}

输出结果:
test.C@33b7b32c;;;;test.C
test.C@33b7b32c;;;;test.C
test.C@33b7b32c;;;;test.C

可见this是基于运行时,this的物理内存地址都是C。


Class概念

Class类是继承Type的。
图片描述

数组属于被映射为 Class 对象的一个类,具有相同元素类型和维数的数组都共享该 Class 对象。基本的 Java 数据类型和关键字 void 也表示为 Class 对象。
Class 没有公共构造方法。Class<T> 对象是在加载类时由类加载器中的 defineClass 方法自动构造的。
装载:
类的装载是通过类加载器完成的,加载器将*.class文件的字节码文件装入JVM的方法区,并且在堆区创建描述这个类的java.lang.Class对象。 但是同一个类只会被类装载器装载一遍。
连接:
连接就是将已经读入到内存的类的二进制数据合并到虚拟机的运行时环境中去,分为校验,准备,解析这3个阶段。校验一般为字节码合法性验证,还有语义检查等;准备就是为静态变量分配内存空间,并设置默认值;解析指类的二进制数据中的符号引用替换为直接引用(指针)。

Class.forName(ClassName).newInstance() //类实例化,默认用的空参构造函数。

//通过指定的Constructor对象来实例化对象
public static void main(String[] args) {  
   try {  
           Class demo = Class.forName("mypackage.Tests"); //getSuperclass() 取得父class        
           Class[] cl = {int.class, int.class};  //指定 Constructor的构造类型
           Constructor con = demo.getConstructor(cl);              
           Object[] x = {new Integer(33),new Integer(67)};  //给传入参数赋初值  
           Object obj = con.newInstance(x);  //实例化  
       } catch (Exception e) {  
           
       }  
}  

class Tests{  
    public Tests(int x, int y){  
       System.out.println(x+"    "+y);  
    }  
}


反射API操作

Class<?> demo = Class.forName("wangliqiu.test.reflect.MyTest");
Field[] fields = demo.getDeclaredFields();
/*
 * getFields()获得某个类的所有public的字段,包括父类。 
 * getDeclaredFields()获得某个类的public、private和proteced的字段,但是不包括父类的申明字段。 
 * 同样还有getConstructors()和getDeclaredConstructors();getMethods()和getDeclaredMethods()。
 */
for (Field field : fields) {
    field.setAccessible(true);// 强制访问
    // 属性
    System.out.println("Field: " + field.getName());
    // 权限修饰符
    int mo = field.getModifiers();
    System.out.println("Modifier: " + Modifier.toString(mo));
    // 属性类型
    Class<?> classType = field.getType();
    System.out.println("Type: " + classType.getName());
}

Class<?> superClass = demo.getSuperclass();// 仅获取父类
System.out.println("getSuperclass: " + superClass);
Type superType = demo.getGenericSuperclass();// 获取完整的父类(带有泛型参数)
System.out.println("getGenericSuperclass: " + superType);
// ParameterizedType参数化类型,即泛型
// getActualTypeArguments获取类型的参数类型,泛型参数可能有多个
Type[] types = ((ParameterizedType) superType).getActualTypeArguments();
for (Type type : types) {
    System.out.println("getActualTypeArguments: " + type);
}

// 可能存在同名但不同参数个数或参数类型的方法,所以getMethod()的方法特征签名要全面。
Method method = demo.getMethod("justTest", String.class, int.class);
method.invoke(demo.newInstance(), "wangliqiu", 20);

public void justTest(String name, int age) {
    System.out.println(name + "====" + age);
}


ClassLoader

1)Bootstrap ClassLoader 用c++编写,引导作用。
2)Extension ClassLoader 用java编写,用来进行扩展类的加载,一般对应的是jrelibext目录中的类
3)AppClassLoader 用java编写,加载classpath指定的类,是最常用的加载器。

在加载类时,每个类加载器会先将加载类的任务交给其parent,如果parent找不到,再由自己负责加载。所以加载顺序如下图,若都找不到,会抛出NoClassDefFoundError。
图片描述

// Bootstrap Loader会加载系统参数sun.boot.class.path指定位置中的文件
System.out.println(System.getProperty("sun.boot.class.path"));
// ExtClassLoader会加载系统参数java.ext.dirs指定位置中的文件
System.out.println(System.getProperty("java.ext.dirs"));
// AppClassLoader会加载系统参数java.class.path指定位置中的文件,即Classpath路径
System.out.println(System.getProperty("java.class.path"));

/*
 * java.exe启动会尝试找到JRE安装目录的jvm.dll,接着启动JVM ,产生Bootstrap Loader,Bootstrap Loader会加载
 * ExtClassLoader,并设定ExtClassLoader的parent为Bootstrap Loader。接着Bootstrap
 * Loader会加载AppClassLoader,并将AppClassLoader的parent设定为Extended Loader。
 */
ClassLoader loader = this.getClass().getClassLoader();
System.out.println(loader.getClass().getName());

// This method will return null if this class was loaded by the bootstrap class loader.
ClassLoader loaderloader = loader.getClass().getClassLoader();
System.out.println(loaderloader);

ClassLoader parentLoader = loader.getParent();
System.out.println(parentLoader.getClass().getName());

// This method will return null if this class loader's parent is the bootstrap class loader.
ClassLoader GrandLoader = parentLoader.getParent();
System.out.println(GrandLoader);

注:
Class.forName除了将class文件加载到jvm中之外,还会执行类中的static块。而classLoader只将*.class文件加载到jvm中,不会执行static块,只有在newInstance才会去执行static块。Class.forName(name, initialize, loader)带参函数也可控制是否加载static块。


类加载及初始化过程

  1. 类加载:Bootstrap Loader -> ExtClassLoader, Bootstrap Loader -> AppClassLoader 

  2. 静态代码块初始化 

  3. 链接

    a) 验证:是否符合java规范 
    b) 准备:默认初始值 (如boolean为false,int为0等)
    c) 解析:符号引用转为直接引用,解析地址 
  4. 初始化 

    a) 赋值:类中属性的初始值 
    b) 构造:构造函数 
    

@interface

@Retention、@Target、@Documented、@Inherited可以用来修饰注解,是注解的注解,称为元注解。

  • @Retention

Retention注解有一个属性value,是Enum RetentionPolicy枚举类型,RetentionPolicy有3个值:CLASS  RUNTIME   SOURCE。
@Retention(RetentionPolicy.SOURCE ) 表示注解的信息只留在源文件中,不参与编译;
@Retention(RetentionPolicy.CLASS) 表示注解的信息被保留在*.class文件(字节码文件)中(程序编译中),但不会被JVM读取;
@Retention(RetentionPolicy.RUNTIME ) 表示注解的信息被保留在*.class文件(字节码文件)中,也会被JVM保留在运行时。

例如:

@Retention(RetentionPolicy.SOURCE )  
public @interface Override  
 
@Retention(RetentionPolicy.SOURCE )  
public @interface SuppressWarnings  
 
@Retention(RetentionPolicy.RUNTIME )  
public @interface Deprecated 
  • @Target

例子:

@Retention(RetentionPolicy.RUNTIME)  
@interface Test{
    String value();
}

@Retention(RetentionPolicy.RUNTIME)  
@interface MyAnnotation{  
    String hello() default "shanghai";  
    String world();    //world()没有默认值,添加注释MyAnnotation时, world属性必须输入参数
    int[] array() default { 2, 4, 5, 6 };      
    Test lannotation() default @Test(value = "ddd");  
    Class<?> style() default String.class;  
}

@MyAnnotation(hello = "beijing", world="class", array={1, 2, 3}, style= int.class)  
class MyTest{  
    @MyAnnotation(world = "method", lannotation=@Test(value="baby"))  
    @Deprecated  
    @SuppressWarnings("")
    public void output(String str, int i){  
        System.out.println("str:" + str +"   int:" + i);  
    }  
}

public class MyReflection{  
    public static void main(String[] args) throws Exception{  
        
        MyAnnotation myClassAnnotation = MyTest.class.getAnnotation(MyAnnotation.class);
        System.out.println("hello:" + myClassAnnotation.hello() + "    world:" + myClassAnnotation.world());
        
        MyAnnotation myMethodAnnotation = method.getAnnotation(MyAnnotation.class);                      
        System.out.println("hello:" + myMethodAnnotation.hello() + "   world:" + myMethodAnnotation.world() +
                "    @Test.value:" + myMethodAnnotation.lannotation().value()     );
        
        Annotation[] annotations = method.getAnnotations();  //获得方法的所有运行时的注释
        for (Annotation annotation : annotations) {  
            System.out.println(annotation.annotationType().getName());  
        }  
   }  
} 

输出:
str:gogo int:9999
hello:beijing world:class
hello:shanghai world:method @Test.value:baby
test.MyAnnotation
java.lang.Deprecated
@SuppressWarnings("")没有显示,可见只有运行时的注释才会执行。

  • @Documented

由@Documented修饰的注解可以在javadoc中显示。

@Documented
public @interface Column {
     ....
}
@Column     //@Column将在javadoc中显示
Public Demo demo {
....
}
  • @Inherited

子类可以继承父类的带有@Inherited修饰的注解。

@Inherited
public @interface Column {
     ....
}
@Column 
Public class Super {
    ....
}

Public class Sub extends Super {
    ....
}

则Sub继承@Column注解。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值