gpt4 book ai didi

java - 为什么我在编译时出现以下错误 : "cannot find symbol - method toArray()" (java)?

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

以下是相关代码行:

HashSet<Integer> products = new HashSet<Integer>();  
...
Integer[] arrProducts = prodDigs.toArray();`

知道为什么我会收到问题中所述的错误吗?

如果有相关的话,我会使用 BlueJ 作为我的 IDE。

最佳答案

通过你的小描述,我猜你想使用 Array() 将哈希集转换为数组:

要将哈希集转换为整数数组,您可以使用:

Integer[] arrProducts = products.toArray(new Integer[products.size()]);

关于java - 为什么我在编译时出现以下错误 : "cannot find symbol - method toArray()" (java)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50712683/

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