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

  • SEARCH
  • Home
  • 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 8772667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:05:30+00:00 2026-06-13T18:05:30+00:00

I have abstract class Managee and helper class Wrapper. Pointer to Managee used to

  • 0

I have abstract class Managee and helper class Wrapper. Pointer to Managee used to construct Wrapper, then Wrapper will take ownership over Managee. I want to ensure that user will always allocate new Managee. Are rvalue-references suitable for this goal?

Wrapper definition:

...
Wrapper(Managee * && tmpptr);
Managee & GetManagee();
...

Wrapper usage:

Wrapper a(new ManageeA()); // ok;
Wrapper b(&a.GetManagee()); // error?    <-----
  • 1 1 Answer
  • 0 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-06-13T18:05:31+00:00Added an answer on June 13, 2026 at 6:05 pm

    Rvalue-references don’t help, since &a.GetManagee() is an rvalue.
    Why not take a std::unique_ptr?

    Wrapper(std::unique_ptr<Managee> ptr)
      : member_ptr(std::move(ptr)) {}
    
    Managee& GetManagee();
    

    Usage:

    Wrapper a(make_unique<Managee>(/*args*/));
    

    For make_unique, see here.

    The best solution, however, wouldn’t even allow the user to create a Managee‘s derived types on the stack – this can be done with a factory function (of course with std::unique_ptr) and making constructors private:

    class SomeClass : public Managee{
    public:
      static std::unique_ptr<SomeClass> create(){
        return make_unique<SomeClass>();
      }
    private:
      SomeClass(){}
      // other ctors
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one abstract class -let's say myBase. And I want all the classes
I have an abstract class with a pure virtual function f() and i want
I have a service manager class used to abstract my calls from my MVC
I have a generic abstract UserControl class, SensorControl , which I want all my
Let say I have abstract class called: Tenant and Customer. The tenant in this
Suppose we have abstract class A (all examples in C#) public abstract class A
I have abstract BaseController, which basically looks like below: public abstract class BaseController :
I have an abstract class Class. The class Subclass extends Class. The Class abstract
I have an abstract class Engine3D and it's structures ( Vector3D , etc.) in
I have an abstract class that implements IDisposable, like so: public abstract class ConnectionAccessor

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.