gpt4 book ai didi

java - 带有扩展的泛型的正确 java 语法

转载 作者:行者123 更新时间:2023-12-02 05:11:47 27 4
gpt4 key购买 nike

这是我正在努力解决的一段代码。

public class Channel<T extends Something>{
public Channel(){}
public void method(T something){}
}

public class Manager{
private static ArrayList<Channel<? extends Something>> channels
= new ArrayList<Channel<? extends Something>>();
public static <T extends Something> void OtherMethod(T foo){
for(Channel<? extends Something> c : channels)
c.method(foo); // this does not work
}
}

不起作用的行给我编译器错误:

The method method(capture#1-of ? extends Something) in the type Channel<capture#1-of ? extends Something> is not applicable for the arguments (T)

我不明白这个错误。如果我删除 Manager 类中的所有泛型,它可以工作,但类型不安全。我应该如何在正确的 Java 中执行此操作?

最佳答案

您的方法需要一个类型参数 public <T extends Something> void method(T foo)

public class Channel<T extends Something> {
public Channel() {
}

public <T extends Something> void method(T foo) {
}
}

public class Manager {
private static ArrayList<Channel<? extends Something>> channels = new ArrayList<Channel<? extends Something>>();

public static <T extends Something> void OtherMethod(T foo) {
for (Channel<? extends Something> c : channels)
c.method(foo); // this does not work
}
}

关于java - 带有扩展的泛型的正确 java 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27275034/

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