我希望能够有两个对相同原始值的引用,并且通过一个所做的任何更改都应该“神奇地”反映到另一个 - 即使用 C 代码作为示例:
// (C code):
int value = 0;
int *p1 = &value;
...
int *p2 = &value;
*p2 = 1;
...
printf("%d", *p1); // gives 1, not 0
到目前为止,我想出的唯一方法是使用额外的对象间接:
var a = { valueWrapper: { num: 1, str: 'initial' } };
var b = a;
// change a
a.valueWrapper.num = 2;
a.valueWrapper.str = 'changed';
// show b
console.log(b.valueWrapper.num);
console.log(b.valueWrapper.str);
// outputs:
//
// $ node test.js
// 2
// changed
有没有更清洁的方法?