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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T09:29:54+00:00 2026-06-13T09:29:54+00:00

Code with old style cast: const string *ps; void *pv; pv = (void*)ps; I

  • 0

Code with old style cast:

const string *ps;  
void *pv;

pv = (void*)ps;

I have try three various named casts:

pv = static_cast<void*>(ps); //  error: invalid static_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’

pv = const_cast<void*>(ps); // error: invalid const_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’

pv = reinterpret_cast<void*>(ps); // error: reinterpret_cast from type ‘const string* {aka const std::basic_string<char>*}’ to type ‘void*’ casts away qualifiers

As you can see. Nothing works.

  • 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-13T09:29:56+00:00Added an answer on June 13, 2026 at 9:29 am

    In this special case, it’s simply:

    pv = const_cast<string*>( ps );
    

    The conversion from string* to void* is implicit. If you wanted to
    make it explicit, you’d need a second, separate cast:

    pv = static_cast<void*>( const_cast<string*>( ps ) );
    

    or

    pv = const_cast<void*>( static_cast<void const*>( ps ) );
    

    I don’t think making it explicit is particularly necessary, however; the
    fact that you’re using a void* already says that there will be
    conversions.

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

Sidebar

Related Questions

I have a templating system that looks similar to old-style ASP code. I run
I have this old-style non-PDO MySQL query (the code isn't tightened up, just to
I have old code that uses size_t which IIRC comes from cstring.h. On OS
I have some old code that uses qsort to sort an MFC CArray of
I have some old code (an old but still maintained VB6 application) that from
I rewrite my old code in new style, like below: #old style open(FD,file); #new
I am currently migrating my code from the old-style enum to enum class. The
Any tips on fixing the emacs error old-style backquotes detected? I'm sure the error
I've got a lot of older code that uses the old-style pascal object type
I am talking about type(value)-style casts. The books I have read pass over them

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.