What does a const cast do differently?

前端 未结 6 1513
心在旅途
心在旅途 2020-12-21 06:40

Is there an actual difference between a const_cast and c style cast (ObjectType) ?

6条回答
  •  暖寄归人
    2020-12-21 07:07

    A const_cast conveys specific information about the intent behind the cast that a C cast cannot.

    If you accidentally try to use a const_cast for purposes other than adding or removing const or volatile, the compiler will help you with an error message.

    Also, const_cast is searchable, unlike a C-style cast.

提交回复
热议问题