通用接口JAVA实现,实现通用的java接口增加了额外的方法

I have a generic java interface Id with a single method T getId() and a class MyClass that implements Id. When I inspect the methods declared on MyClass using java reflection, I see two methods: one with return type Long, and one with return type Object. Where does the second method come from and how can I remove it?

Here is the source:

package mypackage;

import java.lang.reflect.Method;

public class MainClass {

public static void main(String[] args) {

for (Method method : MyClass.class.getDeclaredMethods()) {

System.out.println(method);

}

// prints out two lines

// public java.lang.Long mypackage.MyClass.getId()

// public java.lang.Object mypackage.MyClass.getId()

}

}

interface Id {

T getId();

}

class MyClass implements Id {

@Override

public Long getId() {

return new Long(0);

};

}

解决方案

The second method is a synthetic bridge method, you can check it with method.isSynthetic() or method.isBridge(). You can't remove it, but if you don't want to see it in the list of declared methods, just check all those methods to have isBridge() == false.

Synthetic bridge methods are added automatically to generic classes during compilation. You can read more about synthetic methods here.

for (Method method : MyClass.class.getDeclaredMethods()) {

System.out.println("Method: " + method);

System.out.println("synthetic: " + method.isSynthetic());

System.out.println("bridge: " + method.isBridge());

}

// 1

//Method: public java.lang.Long Main$MyClass.getId()

//synthetic: false

//bridge: false

// 2

//Method: public java.lang.Object Main$MyClass.getId()

//synthetic: true

//bridge: true

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值