gpt4 book ai didi

java - 无法在 Java 中创建通用数组

转载 作者:行者123 更新时间:2023-12-02 00:06:10 25 4
gpt4 key购买 nike

我尝试创建一个通用数组,但出现了标题错误。

 ByteConverter<Product> byteconverter = new ByteConverter<Product>();

//into an inner class I have to declare a final field
final ByteConverter<Product>[] byteconverter2 = {byteconverter};

因此,我在 Stackoverflow 上搜索了可能的解决方案。我在这里发现了类似的东西:Cannot create an array of LinkedLists in Java...? ,所以我将代码更改为以下内容:

 final ByteConverter<Product>[] byteconverter2 = {(ByteConverter<Product>[])byteconverter};

但我仍然犯同样的错误。我不明白为什么..有什么帮助吗?

最佳答案

final ByteConverter<Product>[] byteconverter2 = 
new ByteConverter[]
{
byteconverter
};

这个效果很好

关于java - 无法在 Java 中创建通用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13842574/

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