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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:11:52+00:00 2026-05-28T05:11:52+00:00

I have a classical virtual inheritance diamond: class A { protected: A(const char *x)

  • 0

I have a classical virtual inheritance diamond:

class A {
protected:
    A(const char *x) { ... }
}

class B: public virtual A {
protected:
    B(): A(NULL) { ... }
public:
    virtual void foo() = 0;
}

class C: public virtual A {
protected:
    C(): A(NULL) { ... }
public:
    virtual void bar() = 0;
}

class D: public B, public C {
public:
    D(const char *x): A(x) { ... }
    void foo();
    void bar();
}

I use NULL in B and C because as they’re abstract classes, the A ctor will never be called in their constructurs. Is there a nicer way to do it, otherwise than specify NULL in the constructor or declare parameterless constructor in A? I want the constructor to be called with a parameter, therefore the A() {} ctor should be allowed only in abstract classes.

  • 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-28T05:11:52+00:00Added an answer on May 28, 2026 at 5:11 am

    I am closing this as the rigth answer probably does not exist. IMO the best workaround is the

    struct AbstractPlaceholder {
        AbstractPlaceholder() {
            assert(false);
        }
    };
    
    class A {
    protected:
        A(const AbstractPlaceholder &ap) {}
        A(const char *x) { ... }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say we have a classical polymorphic architecture : class Animal { virtual void
I have a very classical class which contains buttons and label, etc... : @interface
The classical example using STL algorithms: void foo(int){}; vector<int> collection; collection.push_back(3); collection.push_back(4); ... etc.
In our stack, we use neo4j and have encountered classical performance issues : application
I have the classical table with expandable and collapsible records that if expanded show
I have a web system which has a classical parent-children menu saved in a
I have an ecommerce website that works in a classical way: people sign up,
I wonder how many of you have implemented one of computer science's classical algorithms
I have a classical scenario of a website and payment gateway integration, where the
I have the classical structure for tests, I have a test suite of different

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.