3

shared_ptr の複数のインスタンスが参照するオブジェクトを置き換えることは可能ですか? よくわからないかもしれないので、例を挙げます。

shared_ptr<Base> a = new Derived1();
auto b = a;
auto c = b;

// This function replaces the object where a, b, and c point to.
magic(a, new Derived2());

shared_ptr (リセットとスワップ) のメンバー関数を調査しましたが、うまくいきませんでした。

4

1 に答える 1

3

間接的なレイヤーを追加します。

shared_ptr<unique_ptr<Base>> a = unique_ptr<Base>(new Derived1());
auto b = a;
auto c = b;

// This modifies the `unique_ptr` that `a` `b` and `c` point to
// to point to a new Derived2.
*a = unique_ptr<Base>(new Derived2());
于 2013-03-03T12:58:18.770 に答える