gpt4 book ai didi

java - 调用对可能实现该接口(interface)的对象进行接口(interface)约束的泛型方法

转载 作者:行者123 更新时间:2023-11-30 06:15:09 25 4
gpt4 key购买 nike

这是我的代码:

interface a {}
class b{}
class c extends b implements a{}
class d extends b{}
class e{
public void makeItWork(){
b[] bees = new b[] {new c(), new d()};
for (b bee: bees){
if (bee instanceof a) {
a beeA = (a) bee;
//how to call the method test if object bee conforms the the interface?
test(beeA.getClass(), beeA);
//this goes wrong
}
}
}
public <T extends a> void test(Class<T> classType, T concrete){
}
}

除了可能是糟糕的设计之外,我想知道是否可以在实现接口(interface)a的对象上调用方法test

最佳答案

您的test方法不需要泛型类型参数。

您可以将其定义为:

public void test(Class<? extends a> classType, a concrete) {
}

附注请使用大写的类名。

关于java - 调用对可能实现该接口(interface)的对象进行接口(interface)约束的泛型方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49382457/

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