gpt4 book ai didi

java - 需要数组,但 List 发现错误

转载 作者:行者123 更新时间:2023-12-01 07:28:51 25 4
gpt4 key购买 nike

所以我有这些列表:

List<Double> myDoubList1 = new LinkedList<>();
myDoubList1.Add(100);
myDoubList1.Add(66.7);

List<Double> myDoubList=new LinkedList<>();
myDoubList.Add(3);

double g=myDoubList[0]*myDoubList1[0];//error

但在最后一行,出现错误:需要数组,但 List 发现错误。

为什么会出现这个错误?

最佳答案

您无法使用括号符号访问列表。列表元素必须通过 List#get 寻址相反:

myDoubleList1.get(0);

关于java - 需要数组,但 List<Double> 发现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20031973/

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