6

参照:同様の質問

以下のコードは明らかに危険です。問題は、*this への参照をどのように追跡するかということです。

using namespace boost;

// MyClass Definition
class MyClass {

public:
   shared_ptr< OtherClass > createOtherClass() {
      return shared_ptr< OtherClass > OtherClass( this ); // baaad
   }
   MyClass();
   ~MyClass();
};

// OtherClass Definition
class OtherClass {

public:
   OtherClass( const *MyClass myClass );
   ~OtherClass();
};

// Call; pMyClass refcount = 1
shared_ptr< MyClass > pMyClass( new MyClass() );

// Call; pMyClass refcount = 1 => dangerous
pMyClass->createOtherClass();

私は答えを持っています(以下に投稿)。私はそれをstackoverflowに載せたいだけです(私が間違っている場合は誰もが私を修正できます.)

4

2 に答える 2

7

重要なのは、メソッドを拡張enable_shared_from_this<T>して使用しshared_from_this()、shared_ptr を取得することです。*this

詳細については

using namespace boost;    

// MyClass Definition
class MyClass : public enable_shared_from_this< MyClass > {

public:
   shared_ptr< OtherClass> createOtherClass() {
      return shared_ptr< OtherClass > OtherClass( shared_from_this() );
   }
   MyClass();
   ~MyClass();
};

// OtherClass Definition
class OtherClass {

public:
   OtherClass( shared_ptr< const MyClass > myClass );
   ~OtherClass();
};

// Call; pMyClass refcount = 1
shared_ptr< MyClass > pMyClass( new MyClass() );

// Call; pMyClass refcount = 2
pMyClass->createOtherClass();
于 2009-04-29T12:33:58.990 に答える
1

いくつかの問題:
あなたのコードはコンパイルされません!!

あなたのコードは、乱用/誤った使用を阻止するように設計されていません:

MyClass            x;
SharedPtr<MyClass> y = x.createOtherClass();

それで?
これは完全に良いユースケースのようです!

于 2009-04-29T15:56:22.857 に答える