gpt4 book ai didi

javascript - 为什么我的示例代码中的 "a.push(b)"会变成 "b"?

转载 作者:数据小太阳 更新时间:2023-10-29 05:59:51 24 4
gpt4 key购买 nike

我试图将一个值推送到数组,但这会将值添加到数组 ab。如何确保 b 数组未被修改?

var a=[[1]];
var b= [2];
document.getElementById("1").innerHTML="a[1] "+a[1];
document.getElementById("2").innerHTML="b "+b;

a.push(b);
document.getElementById("3").innerHTML="a[1] "+a[1];
document.getElementById("4").innerHTML="b "+b;

a[1].push([3]);
document.getElementById("5").innerHTML="a[1] "+a[1];
document.getElementById("6").innerHTML="b "+b+" < why did this value changed?";
<div id="1"></div>
<div id="2"></div><br />
<div id="3"></div>
<div id="4"></div><br />
<div id="5"></div>
<div id="6"></div><br />

最佳答案

只需使用 slice() 复制原始数组,而不是传递引用。 Array.slice() 将返回从原始数组复制的新数组实例。

当您执行 a.push(b); 时,您已将数组 b 的引用插入到 a 中。

现在,当您执行 a[1].push([3]); 时,您实际上将数组 [3] 插入到 b 位于数组 a 索引 1 处的引用。这就是您看到值发生变化的原因。

var a=[[1]];
var b= [2];
document.getElementById("1").innerHTML="a[1] "+a[1];
document.getElementById("2").innerHTML="b "+b;

a.push(b.slice());
document.getElementById("3").innerHTML="a[1] "+a[1];
document.getElementById("4").innerHTML="b "+b;

a[1].push([3]);
document.getElementById("5").innerHTML="a[1] "+a[1];
document.getElementById("6").innerHTML="b "+b+" < why did this value changed?";
<div id="1"></div>
<div id="2"></div><br />
<div id="3"></div>
<div id="4"></div><br />
<div id="5"></div>
<div id="6"></div><br />

注意:

For object references (and not the actual object), slice copies object references into the new array. Both the original and new array refer to the same object. If a referenced object changes, the changes are visible to both the new and original arrays.

For strings, numbers and booleans (not String, Number and Boolean objects), slice copies the values into the new array. Changes to the string, number or boolean in one array do not affect the other array.

关于javascript - 为什么我的示例代码中的 "a.push(b)"会变成 "b"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52246310/

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