gpt4 book ai didi

java - getMethods() 返回我在实现通用接口(interface)时没有定义的方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:57:58 26 4
gpt4 key购买 nike

一个简单的界面:

interface Foo {
void myMethod(String arg);
}

class FooImpl implements Foo {
void myMethod(String arg){}

public static void main(String[] args) {
Class cls = FooImpl.class;
try {
for (Method method : cls.getMethods()) {
System.out.print(method.getName() + "\t");
for(Class paramCls : method.getParameterTypes()){
System.out.print(paramCls.getName() + ",");
}
System.out.println();
}
} catch (SecurityException e) {
// TODO Auto-generated catch block
}
}
}

输出将是:

myMethod java.lang.String,
...//Other Method

只打印了一个 myMethod。

但是如果我将接口(interface)更改为通用接口(interface):

interface Foo<T> {
void myMethod(T arg);
}

class FooImpl implements Foo<String> {
void myMethod(String arg){}
}

那么奇怪的输出将是:

myMethod java.lang.Object,
myMethod java.lang.String,
...//Other Method

为什么将接口(interface)更改为泛型后会导致多一个参数类型为 Object 的方法?

最佳答案

第一个方法是 bridge method ,由编译器创建。如果您针对“isBridge()”测试您的方法',您可以过滤掉“错误”的方法(也可以过滤掉一些您可以通过协方差返回得到的奇怪结果)。

以下代码不会打印myMethod java.lang.Object:

import java.lang.reflect.Method;


public class FooImpl implements Foo<String> {
public void myMethod(String arg) {
}

public static void main(String[] args) throws Exception {
Class cls = FooImpl.class;
for (Method method : cls.getMethods()) {
if (!method.isBridge()) {
System.out.print(method.getName() + "\t");

for (Class paramCls : method.getParameterTypes()) {

System.out.print(paramCls.getName() + ",");

}
}
System.out.println();
}
}
}

interface Foo<T> {
public void myMethod(T arg);
}

关于java - getMethods() 返回我在实现通用接口(interface)时没有定义的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15268767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com