如何在二维数组中创建数组

发布于 2024-12-08 10:59:10 字数 200 浏览 0 评论 0原文

我是 c# 新手,我正在尝试在 2D 数组中创建一个简单数组,尝试执行以下代码但出现错误,

float [,] Tile = new float[17,23];
Tile[0,0] = new float[2] {1,2};

出现错误:无法隐式地将类型 float[]' 转换为float'

I am new in c#, I am trying to create a simple array in a 2D array, Em trying following code but getting error,

float [,] Tile = new float[17,23];
Tile[0,0] = new float[2] {1,2};

em getting error: Cannot implicitly convert type float[]' tofloat'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

Smile简单爱 2024-12-15 10:59:10

Tile[0,0] 是单个浮点数。

所以你应该像这样添加它

float [,] Tile = new float[17,23];
Tile[0,0] = 1;
Tile[0,1] = 2;
Tile[1,1] = 1337;
etc..

编辑
从你的评论中你可以做这样的事情

 float [,][] Tile = new float[17, 23][];
 Tile [0,0] = new float[] {1,2};

Tile[0,0] is a single float.

So you should add it like this

float [,] Tile = new float[17,23];
Tile[0,0] = 1;
Tile[0,1] = 2;
Tile[1,1] = 1337;
etc..

Edit
From your comment you can do something like this

 float [,][] Tile = new float[17, 23][];
 Tile [0,0] = new float[] {1,2};
土豪我们做朋友吧 2024-12-15 10:59:10

以下是正确的代码:

 float[,][] Tile = new float[17, 23][];
 Tile[0, 0] = new float[2] { 1, 2 };

有关 C# 数组的更多信息,请访问 http://msdn.microsoft。 com/en-us/library/2s05feca.aspx

Here is right code:

 float[,][] Tile = new float[17, 23][];
 Tile[0, 0] = new float[2] { 1, 2 };

More information on C# arrays at http://msdn.microsoft.com/en-us/library/2s05feca.aspx

过期以后 2024-12-15 10:59:10

我不确定你想在这里实现什么,但你的代码应该是这样的:

    float[,] Tile = new float[17, 23];
    Tile[0, 0] = 1.0f;
    Tile[0, 1] = 2.0f;

I am not sure what you are trying to achieve here, but your code should be like:

    float[,] Tile = new float[17, 23];
    Tile[0, 0] = 1.0f;
    Tile[0, 1] = 2.0f;
给我一枪 2024-12-15 10:59:10

请尝试以下操作:

float [,] Tile = new float[17,23];
Tile[0,0] = 2;

Try the following:

float [,] Tile = new float[17,23];
Tile[0,0] = 2;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文