Array.prototype.fill() 与对象:引用共享,而不是实例创建
当将 Array.prototype.fill() 与对象一起使用时一个对象,重要的是要注意它传递对同一对象实例的引用,而不是为每个元素创建新实例。以下代码演示了此行为:
var arr = new Array(2).fill({}); arr[0] === arr[1]; // true (they point to the same object) arr[0].test = 'string'; arr[1].test === 'string'; // true (changes made to one object are reflected in the other)
为了避免这种引用共享并确保每个元素保存唯一的对象实例,可以使用 map() 函数:
var arr = new Array(2).fill().map(u => ({})); var arr = new Array(2).fill().map(Object);
在这些情况下,map() 会为每个元素创建新对象,从而消除引用共享问题。
以上是`Array.prototype.fill()` 是否创建新的对象实例,或共享引用?的详细内容。更多信息请关注PHP中文网其他相关文章!