gpt4 book ai didi

c# - 将一个二维数组复制到另一个二维数组

转载 作者:可可西里 更新时间:2023-11-01 03:03:43 24 4
gpt4 key购买 nike

我使用这段代码将一个二维数组复制到另一个二维数组:

Array.Copy(teamPerformance, 0,tempPerformance,0, teamPerformance.Length);

但是,当我更改 tempPerformance 中的一些数据时,这些更改也适用于 teamPerformance
我应该怎么做才能控制它?

最佳答案

你需要 Clone()

double[,] arr = 
{
{1, 2},
{3, 4}
};
double[,] copy = arr.Clone() as double[,];
copy[0, 0] = 2;
//it really copies the values, not a shallow copy,
//after:
//arr[0,0] will be 1
//copy[0,0] will be 2

关于c# - 将一个二维数组复制到另一个二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15725840/

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