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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T12:48:51+00:00 2026-06-05T12:48:51+00:00

If you have class B which inherits from class A, the two values printed

  • 0

If you have class B which inherits from class A, the two values printed below might be different. Why?

B *myPointer = new B();
A *myOtherPointer = myPointer;

printf(“%x”, myPointer);
printf(“%x”, myOtherPointer);
  • 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-05T12:48:53+00:00Added an answer on June 5, 2026 at 12:48 pm

    the two values printed below might be different. Why?

    Assuming that A is a base of B so that the assignment is valid, it might not be the only base of B (and in particular it might not be the first base), in which case there will be an offset:

    struct A { int x; };
    struct A_ { int y; }
    struct B : A_, A {};
    int main() {
       B b;
       assert( static_cast<void*>(&b) != static_cast<void*>(static_cast<A*>(&b)) );
    }
    

    Additionally, if the inheritance relationship is virtual then they will not start at the same address either:

    struct A {};
    struct B : virtual A {};
    int main() {
       B b;
       assert( static_cast<void*>(&b) != static_cast<void*>(static_cast<A*>(&b)) );
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a MustInherit Parent class with two Child classes which Inherit from the
I have a class which inherits from Canvas. On the OnRender method I draw
I have my class X which inherits from Qt's class Base . I declared
I have a class B which inherits from A which in turn derives from
I have a class called ModelView which inherits from NSOpenGLView. When my program runs
I have a form builder class which inherits from AbstractType and I need to
Let's say I have the following class hierarchy: TaskViewer inherits from ListViewer<Task> which in
I have an NSOperationQueue to which i have added my custom class's objects(inherits from
I have a class that inherits from DrawingVisual. It declares a DependencyProperty which, when
Suppose we have 2 classes, Child, and the class from which it inherits, Parent.

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.