这是一个例子:
class ExampleClass {
private x: number;
private ary: number[];
constructor(x, ary = []) {
this.x = x;
this.ary = ary;
}
public getX() {
return this.x;
}
public setX(x) {
this.x = x;
}
}
const elemArray = [new ExampleClass(10, [10, 20]), new ExampleClass(20, [20, 30])];
我想使用该函数将elemArray
's second element's设置x
为 30 。setX
最简单的方法是:
const newElemArray = update(elemArray, {1: {$apply: function (x: ExampleClass) {
const y = _.cloneDeep(x);
y.setX(30);
return y;
}}});
但是我希望能够在不克隆数组的情况下做到这一点ary
,因为它本身可能很大并且克隆可能很昂贵。我怎样才能做到这一点?
谢谢