gpt4 book ai didi

javascript - 复制数组的数组并修改每个子数组的相同元素

转载 作者:行者123 更新时间:2023-11-30 14:12:07 26 4
gpt4 key购买 nike

我正在尝试复制一个数组数组,然后修改每个子数组的相同元素。

以下代码用于复制数组的初始数组:

const array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
const n = 2; // replicate twice
let replicated_arrays = [];
for (let i = 0; i < n; i++) {
replicated_arrays.push(array);
}
replicated_arrays = [].concat.apply([], replicated_arrays); // flatten to make one array of arrays

然后使用以下代码修改每个数组的第二个元素:

const init = 10;
replicated_arrays.forEach(function(element, index, entireArray) {
entireArray[index][1] = init + index;
});

期望的输出是:

[[1, 10, 3], [4, 11, 6], [7, 12, 9], [1, 13, 3], [4, 14, 6], [7, 15, 9]]

但是,上面的代码会产生以下结果:

[[1, 13, 3], [4, 14, 6], [7, 15, 9], [1, 13, 3], [4, 14, 6], [7, 15, 9]]

如果手动创建复制数组,forEach 会正确更新:

let replicated_arrays = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [1, 2, 3], [4, 5, 6], [7, 8, 9]];

因此,我怀疑它与创建对初始数组的两个实例的引用的 push 方法有关,以便将最终的一组值(13、14 和 15)应用于两个实例。

作为 push 方法的替代方法,我尝试了 map 方法(例如,根据 Duplicate an array an arbitrary number of times (javascript) ),但它产生了相同的结果。

对于正在发生的事情或如何使其正常工作的任何见解或建议,我们将不胜感激。

最佳答案

您需要复制内部数组,因为您需要丢失相同的对象引用。

对于推送,您可以展开数组并稍后省略展平。

const array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
const n = 2; // replicate twice
let replicated_arrays = [];
for (let i = 0; i < n; i++) {
replicated_arrays.push(...array.map(a => a.slice())); // spread array
}
// no need for this! replicated_arrays = [].concat.apply([], replicated_arrays);

const init = 10;
replicated_arrays.forEach(function(element, index) {
element[1] = init + index; // access element directly without taking the outer array
});

console.log(replicated_arrays);

关于javascript - 复制数组的数组并修改每个子数组的相同元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54231848/

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