如何摆脱波动性?

发布于 2024-10-20 20:16:23 字数 32 浏览 1 评论 0原文

如何摆脱波动性?我应该使用哪种 C++ 风格转换?

How to cast away the volatile-ness? Which c++ style cast should I use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2024-10-27 20:16:23

使用const_cast

例如,

volatile sample *pvs = new sample();
sample *ps = const_cast<sample*>(pvs); //casting away the volatile-ness

也就是说,const_cast 用于抛弃常量性和易失性。不幸的是,它的名字不包含术语“易失性”。也许,这是因为关键字 const 比关键字 volatile 更常用。正如其中一条评论所说,cv_cast 会是更合适的名称!

Use const_cast.

For example,

volatile sample *pvs = new sample();
sample *ps = const_cast<sample*>(pvs); //casting away the volatile-ness

That is, const_cast is used to cast away both const-ness as well as volatile-ness. Unfortunately, its name doesn't contain the term "volatile". Maybe, that is because the keyword const is more common in use than the keyword volatile. As one of the comment says, cv_cast would have been more appropriate name!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文