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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:29:18+00:00 2026-06-14T06:29:18+00:00

I am little bit confused on referencing a sub class inside a super class

  • 0

I am little bit confused on referencing a sub class inside a super class in C++.
For example, given Java :

public class Entity {


  protected ComplexEntity _ce;

  public Entity() {

  }

  public ComplexEntity getCentity() {
    return _ce;
  }
}

Where ComplexEntity extends the entity.It works.In the sub class I call getCentity() no errors.

Now ,in C++ when I write something like that:

 #pragma once

 #include "maininclude.h"
 #include "ExtendedEntity.h"
 using namespace std;

 class EntityBase
 {
 public:
    EntityBase(void);
    EntityBase(const string &name);

    ~EntityBase(void);

 protected:

    ExtendedEntity* _extc;
    string   _name;
 };

I am getting compiler error:

  error C2504: 'Entity' : base class undefined  

In the classes which inherit from this Entity.Why does that happen?

Is it completely unacceptable in C++?

May be Entity must be abstract ?
I would like to get suggestions on possible workarounds.

  • 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-14T06:29:19+00:00Added an answer on June 14, 2026 at 6:29 am

    You may consider using CRTP, cut/paste from Wikipedia:

    // The Curiously Recurring Template Pattern (CRTP)
    template<class Derived>
    class Base
    {
        Derived* getDerived() { return static_cast<Derived*>(this); }
    };
    
    class Derived : public Base<Derived>
    {
        // ...
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am a little bit confused with Doctrine class. I created a class and
I am a little bit confused about the ComponentName class in Android. There are
Ok, I'm a little bit confused here. I'm trying to select a DAO class
I'm a little bit confused by this scenario: I have a class that implements
I am a little bit confused about the use of Thread.yield() method in Java,
I'm a little bit confused about using the class GregorianCalendar and Date . What
I'm a little bit confused about the custom UiViewController inheritance. For example if I
I'm sometimes a little bit confused about concepts in Java EE application development. Let's
I am little bit confused regarding backend working of anonymous class, like if we
I'm a little bit confused reading about PostgreSQL deadlocks. A typical deadlock example is:

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.