作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这段代码是否会改变对象或者以其他方式改变对象?如果发生的话我该如何避免?
const object = {property: false};
const test = {property: !object.property};
最佳答案
您的代码不会改变任何内容。当您创建 test
时,原始 object
不会受到影响,因为 .property
是 bool 值(因此是值类型),因此您的新分配是仅按值(value)计算。
const test = {property: !object.property}; // assigns a new value to a new reference
另一方面,这会:
const object = {property: false};
object.property = !object.property; // mutating the object
const test = object; // copying the reference
不过,你可以这样做:
const object = {property: false};
const test = {...object, property: !object.property}; // creates a copy of object and over-writes the value of the new property
关于javascript - 设置对象属性 :! object.property 是否易失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56908907/
考虑一个 C 函数(具有外部链接),如下所示: void f(void **p) { /* do something with *p */ } 现在假设 f 的调用方式使得 p 指向堆栈上 f 的
我是一名优秀的程序员,十分优秀!