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 8259303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T02:49:42+00:00 2026-06-08T02:49:42+00:00

#include <memory> class Base { std::shared_ptr<Base> create() const; // Returns a default constructed object

  • 0
#include <memory>

class Base
{
    std::shared_ptr<Base> create() const; // Returns a default constructed object
}

Suppose, that all the members derived to whatever degree from Base are copy constructible and default constructible. I want the

std::shared_ptr<Base> create() const;

Method to create object of the appropriate dynamic type, but I do not want to use boilerplate code.

Is it possible to make

std::shared_ptr<Base> create() const;

Statically bound, but inside find somehow the correct type and create the object using Default constructor? Possibly using C++11.

  • 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-08T02:49:43+00:00Added an answer on June 8, 2026 at 2:49 am

    The create() functions should probably be static, as you don’t have an instance yet. But without parameters you cannot do what you want… unless you use templates, of course:

    class Base
    {
    public:
        template<typename T>
        static std::shared_ptr<Base> create() const
        {
            return std::shared<Base>(new T);
        }
    };
    

    Then use it this way:

    std::shared_ptr<Base> ptr(Base::create<Foo>());
    

    Or, if you prefer:

    std::shared_ptr<Base> ptr(Foo::create<Foo>());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: #include <memory> class Foo; typedef std::tr1::shared_ptr<Foo> pFoo_t; class DoSomething
Test.h #ifndef TEST_H #define TEST_H #include <memory> template <class Type> bool operator==(const std::weak_ptr<Type>& wp1,
#include <vector> #include <memory> using namespace std; class A { public: A(): i(new int)
What I want to do is this: #include <memory> class autostr : public std::auto_ptr<char>
Consider this piece of code: #include <vector> #include <iostream> using namespace std; class Base
The base class is : #include <memory> namespace cb{ template< typename R, typename ...
Given that a class and all its subclasses need no more than the default
#include<iostream> #include<memory> #include<stdio> using namespace std; class YourClass { int y; public: YourClass(int x)
So I'm trying to write a base class to handle classes that wrap std::vector,
I tried writing this class #include <memory> class ContainerUnique { public: ContainerUnique(void); ~ContainerUnique(void); private:

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.