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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:57:38+00:00 2026-05-13T23:57:38+00:00

If I allocate an object of a class Derived (with a base class of

  • 0

If I allocate an object of a class Derived (with a base class of Base), and store a pointer to that object in a variable that points to the base class, how can I access the members of the Derived class?

Here’s an example:

class Base
{
    public:
    int base_int;
};

class Derived : public Base
{
    public:
    int derived_int;
};

Base* basepointer = new Derived();
basepointer-> //Access derived_int here, is it possible? If so, then how?
  • 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-13T23:57:38+00:00Added an answer on May 13, 2026 at 11:57 pm

    No, you cannot access derived_int because derived_int is part of Derived, while basepointer is a pointer to Base.

    You can do it the other way round though:

    Derived* derivedpointer = new Derived;
    derivedpointer->base_int; // You can access this just fine
    

    Derived classes inherit the members of the base class, not the other way around.

    However, if your basepointer was pointing to an instance of Derived then you could access it through a cast:

    Base* basepointer = new Derived;
    static_cast<Derived*>(basepointer)->derived_int; // Can now access, because we have a derived pointer
    

    Note that you’ll need to change your inheritance to public first:

    class Derived : public Base
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to store an object of some derived class as a property of
As I have read in certain forums,when derived class object is created base class
Base* optr=new Derived(); delete optr; I know that if Base class has a non-virtual
Suppose I have class Base and Derived : public Base . I have constructed
Possible Duplicate: Can a member function template be virtual? In a base class, the
Can someone point out the use of object class ? i mean using instances
i want to access the bytes of an object in C# okey for example
Is it possible in C# to explicitly convert a base class object to one
Look at this example class base { public: int m1; base() { m1 =
I need to access the private members of a local object from a member

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.