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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:11:47+00:00 2026-05-19T12:11:47+00:00

I was wondering if someone could help me. Suppose I have some classes as

  • 0

I was wondering if someone could help me.

Suppose I have some classes as follows:

class A { ... };

class B : public A { ... }

class C : public A { ... };

class D { ... };

class E : public D { ... };

class F : public D { ... };

Now I want class B to have an object of type E as a member and class C to have a object of type F as a member.

Is there a nice design pattern whereby I can have some sort of base pointer to class D in class A and then create a new E in class B and a new F in class C. I was wondering if abstract factory is similar?.

I hope this is not too confusing … it is hard to explain without UML diagrams!.

  • 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-05-19T12:11:48+00:00Added an answer on May 19, 2026 at 12:11 pm

    What’s wrong with just doing exactly as you say?

    class A
    {
        A(D* p) : ptr(p) {}
        D* ptr;
    };
    
    class B : public A
    {
        B() : A(new E) {}
    };
    
    class C : public A
    {
        C() : A(new F) {}
    };
    

    If you want to automate it a bit better, you can use an intermediate template class.

    class A
    {
        virtual D* getD();
    };
    
    template <class T>
    class AImpl : public A
    {
        AImpl() : m_d(new T) {}
        T* getD() { return m_d; }
        T* m_d;
    };
    
    class B : public AImpl<E> { };
    
    class C : public AImpl<F> { };
    

    Note that AImpl::getD() can return T* due to covariant return types.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if someone could help me with this. I have defined my
I was wondering if someone could help with this: I have a series of
I was wondering if someone could help with with some jquery code for doing
I was wondering if someone could help me. Im trying to integrate some code
Im wondering if someone could help me. I have hundreds of people uploading images
I was wondering if someone could help me. I have started using version control
I was wondering if someone could help me with a simple question? i have
Wondering if someone could help with with some Spring.net IOC integration into a .aspx
I have an SQL problem i was wondering if someone could help me out.
Im wondering if someone could help me .... I have 2 images, and i

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.