Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 201545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:12:31+00:00 2026-05-11T17:12:31+00:00

See also: Similar question The code below is obviously dangerous. The question is: how

  • 0

See also: Similar question

The code below is obviously dangerous. The question is: how do you do keep track of the reference to *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();

I have the answer (posted below), I just want it to be on stackoverflow (where everyone can correct me if I’m wrong.)

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T17:12:31+00:00Added an answer on May 11, 2026 at 5:12 pm

    The key is to extend enable_shared_from_this<T> and use the shared_from_this() method to get a shared_ptr to *this

    For detailed information

    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();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

See also SO 1664677 I get this error 2: Syntax error: ( unexpected when
My question is very similar to this question but a bit more specific. My
Firstly, I realise that this is a very similar question to this one: Which
Krumelur asked this question about how create a recipient bubble similar to the mail.app.
Ok, I have previously asked a similar question to this but it was voted
My question is pretty similar to this one . I am working in company
I am writing a glassing program, similar to Glass2k (see image below) as I
I am experiencing a memory leak with a code similar to the one below
See also How does a WCF server inform a WCF client about changes? (Better
See also C Tokenizer Here is a quick substr() for C that I wrote

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.