我在“The C ++ programming language,4th edition”,第17.5.1.3章
中找到了下面的代码struct S2 {
shared_ptr<int> p;
};
S2 x {new int{0}};
void f()
{
S2 y {x}; // ‘‘copy’’ x
∗y.p = 1; // change y, affects x
∗x.p = 2; // change x; affects y
y.p.reset(new int{3}); // change y; affects x
∗x.p = 4; // change x; affects y
}
我不明白最后的评论,确实y.p应该在reset()调用后指向一个新的内存地址,所以
∗x.p = 4;
应该让y.p保持不变,不是吗?
由于
答案 0 :(得分:5)
这本书错了,你是对的。您可以考虑将其发送给Bjarne,以便在下次打印时将其修复。
正确的评论可能是:
S2 y {x}; // x.p and y.p point to the same int.
*y.p = 1; // changes the value of both *x.p and *y.p
*x.p = 2; // changes the value of both *x.p and *y.p
y.p.reset(new int{3}); // x.p and y.p point to different ints.
*x.p = 4; // changes the value of only *x.p