const_cast<> 的目的是什么?不稳定?
我看到可以做到这一点,但我不明白这种兴趣。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我看到可以做到这一点,但我不明白这种兴趣。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
const
和volatile
听起来好像它们在变量上引用了相同的想法,但事实并非如此。当前代码无法更改const
变量。易失性变量可能会被当前代码之外的某些外部实体更改。可能有一个 const 易失性变量 - 特别是像内存映射寄存器这样的变量 - 它会在程序无法预测的时间被计算机更改,但不允许你的代码直接更改。您可以使用const_cast
向变量添加或删除const
或易失性
(“cv-qualification”)。const
andvolatile
sound like they refer to the same idea on a variable, but they don't. Aconst
variable can't be changed by the current code. Avolatile
variable may be changed by some outside entity outside the current code. It's possible to have aconst volatile
variable - especially something like a memory mapped register - that gets changed by the computer at a time your program can't predict, but that your code is not allowed to change directly. You can useconst_cast
to add or removeconst
orvolatile
("cv-qualification") to a variable.const
和volatile
是正交的。const
表示数据是只读的。易失性
表示变量可能由于外部原因而发生变化,因此编译器每次引用该变量时都需要从内存中读取该变量。因此,删除
const
允许您写入原本是只读的位置(代码必须具有一些特殊的知识,该位置实际上是可修改的)。您不应该删除易失性
来写入它,因为您可能会导致未定义的行为(由于 7.1.5.1/7 -如果尝试引用使用 易失性限定定义的对象通过使用左值类型
)对于非易失性限定类型,程序行为是未定义的。
const
andvolatile
are orthogonal.const
means the data is read-only.volatile
means the variable could be changing due to external reasons so the compiler needs to read the variable from memory each time it is referenced.So removing
const
allows you to write what was otherwise a read-only location (the code must have some special knowledge the location is actually modifiable). You shouldn't removevolatile
to write it because you could cause undefined behavior (due to 7.1.5.1/7 -If an attempt is made to refer to an object defined with a volatile-qualified type through the use of an lvalue
)with a non-volatile-qualified type, the program behaviour is undefined.