devxlogo

Using the Const_cast Operator

Using the Const_cast Operator

The const_cast operator takes the form:

     const_cast (expr)

It is used to add or remove the “const-ness” or “volatile-ness” from a type. Consider a function, f, which takes a non-const argument:

    double f( double& d );

Say you wish to call f from another function g:

    void g (const double& d)   {     val = f(d);   }

Because d is const and should not be modified, the compiler will complain because f may potentially modify its value. To get around this dilemma, use a const_cast:

    void g (const double& d)   {      val = f(const_cast(d));   }

This strips away the “const-ness” of d before passing it to f. You cannot use const_cast for any other types of casts, such as casting a base class pointer to a derived class pointer. If you do so, the compiler will report an error.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist