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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T22:54:27+00:00 2026-05-15T22:54:27+00:00

If you have a void* pointer to Derived class that inherits from both BaseA

  • 0

If you have a void* pointer to Derived class that inherits from both BaseA and BaseB, how does the compiler cast the void* pointer to BaseA* (or BaseB*) without knowing that the void* pointer is of type Derived?

  • 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-15T22:54:27+00:00Added an answer on May 15, 2026 at 10:54 pm

    It doesn’t. The only guarantee when casting to and from a void* using a static_cast is:

    A value of type pointer to object converted to “pointer to cv void” and back to the original pointer type will have its original value (C++03 §5.2.9/10).

    For example, the following code is incorrect because the void* is cast to a type other than the original pointer type (the cast sequence is B1* -> void* -> B2*):

    struct B1 { int i; };
    struct B2 { int j; };
    
    struct D : B1, B2 { };
    
    D x;
    B1*   b1ptr   = &x;
    void* voidptr = b1ptr;
    B2*   b2ptr   = static_cast<B2*>(voidptr);
    

    Attempting to use b2ptr here would result in undefined behavior. The only type to which you can safely cast voidptr is B1*, since that is the type from which the void* was obtained (well, or to a char*, since anything can be accessed via a char*).

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

Sidebar

Ask A Question

Stats

  • Questions 537k
  • Answers 537k
  • 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 When the XmlSerializer serializes a collection, it only takes the… May 17, 2026 at 1:38 am
  • Editorial Team
    Editorial Team added an answer Use Apple's Reachability class to check for Wifi or WAN.… May 17, 2026 at 1:38 am
  • Editorial Team
    Editorial Team added an answer Inheritance in .NET works only on instance base. Static methods… May 17, 2026 at 1:38 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

Related Questions

I have a wrapper class that delegates its work to a pimpl, and the
I want to implement a derived class that should also implement an interface, that
I have a class, lets call it A, and within that class definition I
Say I have an abstract class class NecessaryDanger { public: virtual void doSomethingDangerous() =0;
I have two Java class hierarchies that share a common ancestor and implement a
I have a templated class that performs an action on the class that is
I'm creating a class (say, C) that associates data (say, D) with an object
I'm getting a pointer to a base class (which is actually a pointer to
I want to instantiate a base class pointer to point to a newly constructed
Alright, I have library I wrote in C that reads a file and provides

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.