gpt4 book ai didi

C# 不能声明 Int : Field is never assigned to, 的公共(public) double 组,并且其默认值始终为 null

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

我在这一行收到一个错误:
public int[][] mySpiros;
错误如下:
Field Spirograph.myList.mySpiros is never assigned to, and will always have its default value null .

现在这一行写在一个类中。我只想创建一个 double 数组,这样我就可以为用户生成的每个绘图(螺旋图)存储我的 future 参数。

编辑:似乎实例化多个数组 integers不是微软最喜欢的 Action :

enter image description here

最佳答案

您正在创建 array of arrays所以你需要实例化数组,如:

public int[][] mySpiros;

//create three reference variables to hold array references
mySpiros=new int[3][];

mySpiros[0]=new int[4];
mySpiros[1]=new int[] {11,22,33,44};
mySpiros[2]=new int[40];

关于C# 不能声明 Int : Field is never assigned to, 的公共(public) double 组,并且其默认值始终为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12452551/

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