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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:10:44+00:00 2026-05-14T18:10:44+00:00

In one header file I have: #include BaseClass.h // a forward declaration of DerivedClass,

  • 0

In one header file I have:

#include "BaseClass.h"
// a forward declaration of DerivedClass, which extends class BaseClass.
class DerivedClass ;
class Foo {
   DerivedClass *derived ;
   void someMethod() {
       // this is the cast I'm worried about.
       ((BaseClass*)derived)->baseClassMethod() ;
   } 
};

Now, DerivedClass is (in its own header file) derived from BaseClass, but the compiler doesn’t know that at the time it’s reading the definition above for class Foo. However, Foo refers to DerivedClass pointers and DerivedClass refers to Foo pointers, so they can’t both know each other’s declaration.

First question is whether it’s safe (according to C++ spec, not in any given compiler) to cast a derived class pointer to its base class pointer type in the absence of a full definition of the derived class.

Second question is whether there’s a better approach. I’m aware I could move someMethod()’s body out of the class definition, but in this case it’s important that it be inlined (part of an actual, measured hotspot – I’m not guessing).

  • 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-14T18:10:44+00:00Added an answer on May 14, 2026 at 6:10 pm

    It may work, but the risk is huge.

    The problem is that most of the times Derived* and Base* will indeed have the same value under the hood (which you could print). However this is not true as soon as you have virtual inheritance and multi-inheritance and is certainly not guaranteed by the standard.

    When using static_cast the compiler performs the necessary arithmetic (since it knows the layout of the class) to adjust the pointer value. But this adjustment is not performed by reinterpret_cast or the C-style cast.

    Now, you could perfectly rework your code like so:

    // foo.h
    class Derived;
    
    class Foo
    {
    public:
      void someMethod();
    private:
      Derived* mDerived;
    };
    
    // foo.cpp
    #include "myProject/foo.h"
    
    #include "myProject/foo.cpp"
    
    void Foo::someMethod() { mDerived->baseClassMethod(); }
    

    Anyway: you are using a pointer to Derived, while it’s okay there is a number of gotchas you should be aware of: notably if you intend to new an instance of the class it will be necessary for you to redefine the Copy Constructor, Assignment Operator and Destructor of the class to properly handle the pointer. Also make sure to initialize the pointer value in every Constructor (whether to NULL or to an instance of Derived).

    It’s not impossible but document yourself.

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

Sidebar

Ask A Question

Stats

  • Questions 412k
  • Answers 412k
  • 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 xrange() is a faster (written in C) version of range().… May 15, 2026 at 8:13 am
  • Editorial Team
    Editorial Team added an answer I believe the current recommended practice when exposing your Entity… May 15, 2026 at 8:13 am
  • Editorial Team
    Editorial Team added an answer I have no idea why you would want to keep… May 15, 2026 at 8:13 am

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.