Const Cast

This lesson highlights the key features of the const_cast operator.

We'll cover the following

Features #

  • const_cast allows us to remove or add the const or volatile property from a variable.

  • const_cast is perhaps the most rarely used cast operator because it is undefined behavior to remove const or volatile from a variable if the variable was declared const or volatile in the first place.

Example #

Get hands-on with 1200+ tech skills courses.