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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:26:43+00:00 2026-05-11T20:26:43+00:00

I’m looking for solution of C++ class design problem. What I’m trying to achieve

  • 0

I’m looking for solution of C++ class design problem. What I’m trying to achieve is having static method method in base class, which would return instances of objects of descendant types. The point is, some of them should be singletons. I’m writing it in VCL so there is possibility of using __properties, but I’d prefer pure C++ solutions.

class Base {
  private:
    static Base *Instance;
  public:
    static Base *New(void);
    virtual bool isSingleton(void) = 0;
}
Base::Instance = NULL;

class First : public Base { // singleton descendant
  public:
    bool isSingleton(void) { return true; }
}

class Second : public Base { // normal descendant
  public:
    bool isSingleton(void) { return false; }
}

Base *Base::New(void) {
  if (isSingleton())
    if (Instance != NULL)
      return Instance = new /* descendant constructor */;
    else
      return Instance;
  else
    return new /* descendant constructor */;
}

Arising problems:

  • how to declare static variable Instance, so it would be static in descendant classes
  • how to call descendant constructors in base class

I reckon it might be impossible to overcome these problems the way I planned it. If so, I’d like some advice on how to solve it in any other way.


Edit: some minor changes in code. I have missed few pointer marks in it.

  • 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-11T20:26:43+00:00Added an answer on May 11, 2026 at 8:26 pm

    Just to check we have our terminologies in synch – in my book, a factory class is a class instances of which can create instances of some other class or classes. The choice of which type of instance to create is based on the inputs the factory receives, or at least on something it can inspect. Heres’s a very simple factory:

    class A { ~virtual A() {} };   
    class B : public A {};
    class C : public A {};
    
    class AFactory {
       public:
          A * Make( char c ) {
             if ( c == 'B' ) {
                 return new B;
             }
             else if ( c == 'C' ) { 
                return new C;
             }
             else {
               throw "bad type";
             }
          }
    };
    

    If I were you I would start again, bearing this example and the following in mind:

    • factorioes do not have to be singletons
    • factories do not have to be static members
    • factories do not have to be members of the base class for the hierarchies they create
    • factory methods normally return a dynamically created object
    • factory methods normally return a pointer
    • factory methods need a way of deciding which class to create an instance of

    I don’t see why your factory needs reflection, which C++ does not in any case support in a meaningful way.

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

Sidebar

Ask A Question

Stats

  • Questions 334k
  • Answers 334k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can use the datetime object or their function aliases… May 14, 2026 at 3:22 am
  • Editorial Team
    Editorial Team added an answer There is a JSONDataSerializer, but it is some obscure assembly.… May 14, 2026 at 3:22 am
  • Editorial Team
    Editorial Team added an answer Modern browsers wait with any sort of rendering until the… May 14, 2026 at 3:22 am

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I want use html5's new tag to play a wav file (currently only supported
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I've got a string that has curly quotes in it. I'd like to replace
In order to apply a triggered animation to all ToolTip s in my app,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.