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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T08:51:17+00:00 2026-06-03T08:51:17+00:00

I keep hearing this statement, while I can’t really find the reason why const_cast

  • 0

I keep hearing this statement, while I can’t really find the reason why const_cast is evil.

In the following example:

template <typename T>
void OscillatorToFieldTransformer<T>::setOscillator(const SysOscillatorBase<T> &src)
{
    oscillatorSrc = const_cast<SysOscillatorBase<T>*>(&src);
}

I’m using a reference, and by using const, I’m protecting my reference from being changed. On the other hand, if I don’t use const_cast, the code won’t compile. Why would const_cast be bad here?

The same applies to the following example:

template <typename T>
void SysSystemBase<T>::addOscillator(const SysOscillatorBase<T> &src)
{
    bool alreadyThere = 0;
    for(unsigned long i = 0; i < oscillators.size(); i++)
    {
        if(&src == oscillators[i])
        {
            alreadyThere = 1;
            break;
        }
    }
    if(!alreadyThere)
    {
        oscillators.push_back(const_cast<SysOscillatorBase<T>*>(&src));
    }
}

Please provide me some examples, in which I can see how it’s a bad idea/unprofessional to use a const_cast.

Thank you for any efforts 🙂

  • 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-03T08:51:18+00:00Added an answer on June 3, 2026 at 8:51 am

    Because you’re thwarting the purpose of const, which is to keep you from modifying the argument. So if you cast away the constness of something, it’s pointless and bloating your code, and it lets you break promises that you made to the user of the function that you won’t modify the argument.

    In addition, using const_cast can cause undefined behaviour. Consider this code:

    SysOscillatorBase<int> src;
    const SysOscillatorBase<int> src2;
    
    ...
    
    aFieldTransformer.setOscillator(src);
    aFieldTransformer.setOscillator(src2);
    

    In the first call, all is well. You can cast away the constness of an object that is not really const and modify it fine. However, in the second call, in setOscillator you are casting away the constness of a truly const object. If you ever happen to modify that object in there anywhere, you are causing undefined behaviour by modifying an object that really is const. Since you can’t tell whether an object marked const is really const where it was declared, you should just never use const_cast unless you are sure you’ll never ever mutate the object ever. And if you won’t, what’s the point?

    In your example code, you’re storing a non-const pointer to an object that might be const, which indicates you intend to mutate the object (else why not just store a pointer to const?). That might cause undefined behaviour.

    Also, doing it that way lets people pass a temporary to your function:

    blah.setOscillator(SysOscillatorBase<int>()); // compiles
    

    And then you’re storing a pointer to a temporary which will be invalid when the function returns1. You don’t have this problem if you take a non-const reference.

    On the other hand, if I don’t use const_cast, the code won’t compile.

    Then change your code, don’t add a cast to make it work. The compiler is not compiling it for a reason. Now that you know the reasons, you can make your vector hold pointers to const instead of casting a square hole into a round one to fit your peg.

    So, all around, it would be better to just have your method accept a non-const reference instead, and using const_cast is almost never a good idea.


    1 Actually when the expression in which the function was called ends.

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

Sidebar

Related Questions

I keep hearing all this hype about Twisted for python, but i just find
I keep hearing this term tossed around in several different contexts. What is it?
I keep on hearing this words ' callback ' and ' postback ' tossed
I keep hearing about DLL hell - what is this all about?
Since I have started using this site, I keep hearing about the Boost library.
I keep hearing from associates about grid computing which, from what I can gather,
I keep hearing that Lisp is a really productive language, and I'm enjoying SICP
I keep hearing a lot about functors in C++. Can someone give me an
I am coming from the Java world and keep hearing this term 'worker' in
I keep hearing about the Entity Framework fluent-api but I am struggling to find

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.