What does a const cast do differently?

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

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

6条回答
  •  旧时难觅i
    2020-12-21 06:51

    A const_cast can only add or remove const-ness (or volatile-ness, though this is much less common).

    A C-style cast can do the same as any of the "new" casts, except for a dynamic_cast (and it can do a few things none of them can do, though it's not really relevant here).

提交回复
热议问题