gpt4 book ai didi

c# - 使用 foreach 更改对象

转载 作者:行者123 更新时间:2023-11-30 14:02:17 25 4
gpt4 key购买 nike

这主要是一个理论问题,即我不需要任何实际解决方案,但是在 MS VC# 2010 中使用 foreach 时,代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{

int[] ints = new int[7]{0,0,0,0,0,0,0};
foreach (int i in ints)
{
i = 10;

}
Console.ReadKey();
}
}
}

我得到的错误告诉我我不能修改 i 因为它是一个 foreach 变量,现在如果我想我可以用很多其他方法来完成这个简单的任务,但问题是我在文档中没有看到任何不允许我尝试做的事情,我认为 foreach 应该让您能够更改列表中的变量。

有什么我想念的吗?

最佳答案

如果您foreach 一个集合,您将获得只读的项目。如果将循环更改为传统的 for 循环,则可以更改数组内容:

  for (int index = 0; index < ints.Length; ++index)
{
ints[index] = 10;
}

关于c# - 使用 foreach 更改对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6244184/

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