What's wrong with const?

前端 未结 12 2024
無奈伤痛
無奈伤痛 2021-01-31 12:06

What are the known shortfalls of const in C++ and C++0x?

12条回答
  •  别那么骄傲
    2021-01-31 12:52

    One problem is that the language also lets you const_cast it away, which defeats the purpose of using const in the first place.

提交回复
热议问题