Arraylist.add()覆盖c#中由循环构建的Arraylist中的所有值
本文关键字:Arraylist add 构建 循环 覆盖 | 更新日期: 2023-09-27 18:10:05
Arraylist.add()覆盖c#中由循环创建的数组列表中先前的所有值。代码是:
public ArrayList MakeList(int size, int iterations)
{
ArrayList myList = new ArrayList(iterations);
for (int run = 0; run < iterations; run++)
{
byte[] _byteArray = new byte[size];
bool success = false;
while (!success)
{
//Some Operations
if(condition)
success = true;
else
continue;
if(success)
break;
}
myList .Add(_byteArray );
}
return myList;
}
上面的循环总是用最新的字节数组覆盖List中的值。请帮我解决这个问题
Karthick最初我认为这是一个深拷贝或浅拷贝的问题,但只要你在for循环内初始化字节数组,它应该完美地工作。我尝试了下面的示例代码在我的结束,它工作得非常好,当函数MakeList即将返回。由myList指向的三个字节数组包含我插入的00,01,11,并且没有像你建议的那样覆盖它们。为了快速输出,我已经硬编码了几个参数:
public class Program
{
public static void Main(string[] args)
{
var col = new ColTest();
col.MakeList();
}
}
public class ColTest
{
public ArrayList MakeList()
{
var capacity = 3;
ArrayList myList = new ArrayList(capacity);
int size = 2;
for (int run = 0; run < capacity; run++)
{
byte[] _byteArray = new byte[size];
if (run == 0)
{
_byteArray[0] = 0;
_byteArray[1] = 0;
}
else if (run == 1)
{
_byteArray[0] = 0;
_byteArray[1] = 1;
}
else if (run == 2)
{
_byteArray[0] = 1;
_byteArray[1] = 1;
}
myList.Add(_byteArray);
}
return myList;
}
}
希望这对你有帮助!