• java冷知识之Method的isBridge()桥接方法和isSynthetic()合成方法


    桥接方法

    定义

    在源方法和目标方法之间创建一个中间层,通常作为泛型的类型擦除过程的一部分。

    第一个例子

    public class Person implements Comparable<Person> {
    
      @Override
      public int compareTo(Person o) {
        return 0;
      }
    }
    

    反编译之后的结果为

    public class Person implements Comparable {
    
      @Override
      public int compareTo(Person o) {
        return 0;
      }
    
      //桥接方法
      @Override
      public int compareTo(Object o) {
        return this.compareTo((Person)o);
      }
    }
    

    编译器会将泛型擦除,为了兼容1.5之前的版本,编译器创建了一个桥接方法。

    public class TestBridgeMethod {
    
      public static void main(String[] args) throws Exception {
        System.out.println(Person.class.getDeclaredMethod("compareTo", Person.class).isBridge());//false
        System.out.println(Person.class.getDeclaredMethod("compareTo", Object.class).isBridge());//true
      }
    }
    

    可以看到参数为Object的方法isBridge()为true,表示该方法为桥接方法。

    第二个例子

    public class TestBridgeMethod2 {
    
      public static void main(String[] args) throws Exception {
        System.out.println(Father.class.getDeclaredMethod("test").isBridge());
      }
    
      protected class Father {
    
        public void test() { }
      }
    
      public class Son extends Father {
    
      }
    }
    

    反编译之后为

    public class TestBridgeMethod2 {
    
      public static void main(String[] args) throws Exception {
        System.out.println(Father.class.getDeclaredMethod("test").isBridge());//true
      }
    
      protected class Father {
    
        public void test() { }
      }
      
      public class Son extends Father {
        //桥接方法
        public void test() {
          super.test();
        }
      }
    }
    

    这种情况编译器也会创建桥接方法。

    合成方法

    定义

    编译器为内部目的创建的方法。

    示例

    public class Father {
    
      private class Son {
    
        private String name;
      }
    
      public String getName() {
        return new Son().name;
      }
    }
    

    反编译之后的结果为

    public class Father {
    
      private class Son {
    
        private String name;
    
        //合成方法
        static String access$100(Son x0) {
            return x0.name;
        }
      }
    
      public String getName() {
        return return Son.access$100((Son)new Son(this, null));
      }
    }
    

    测试一下

    import java.lang.reflect.Method;
    
    public class TestSyntheticMethod {
    
      public static void main(String[] args) {
        for (Method declaredMethod : Son.class.getDeclaredMethods()) {
          System.out.println(declaredMethod.getName() + "," + declaredMethod.isSynthetic());
        }
      }
    }
    

    输出为

    access$000,true
    

    可以看到,该方法确实为合成方法。上面桥接方法示例中编译器创建的方法也是合成方法。

    注意

    合成方法的示例代码在java8中可以正常运行,在java11中不能正常运行(获取不到合成方法),具体原因不知。

    参考

    Method Class | isBridge() Method in Java
    Method class isSynthetic() method in Java

  • 相关阅读:
    Linux ln 命令
    一文看懂云计算、虚拟化和容器
    Windows与Linux如何实现相互远程桌面连接?
    Windows与Linux相互远程桌面连接
    什么叫操作系统?
    Linux服务器如何识别移动硬盘?
    Linux主流发行版本配置IP总结(Ubuntu、CentOS、Redhat、Suse)
    实现Linux系统的回收站
    1108 Finding Average (20 分)
    1100 Mars Numbers (20 分)
  • 原文地址:https://www.cnblogs.com/strongmore/p/15259615.html
Copyright © 2020-2023  润新知