What does a const cast do differently?

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

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

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-21 06:52

    A const_cast is more restricted and won't let you do anything other than change const-ness. That makes it safer i.e. less accident-prone.

    In addition it's easier to search for.

提交回复
热议问题