是++ std::atomic的原子

发布于 2024-11-26 17:39:42 字数 160 浏览 1 评论 0原文

根据 c++0x 中的一个 Channel 9 E2E 视频(其中有 Herb Sutter),如果数字是 atomic number++ 是原子的。有人可以确认最终的 C++11 标准是这样的吗(让我们假装它已经最终确定了:))。

Acording to one Channel 9 E2E video(with Herb Sutter in it) in c++0x if number is atomic<int>
number++ is atomic. Can somebody confirm that is how it is in the final C++11 standard(lets pretend that it is finalized :)).

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

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

发布评论

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

评论(2

别理我 2024-12-03 17:39:42

标准最终确定,atomic 的所有标准积分特化上的每个操作都是原子的。

这并不意味着所有涉及标准积分atomic表达式都是原子的。

number = number * 2;

是两个操作:

temporary = number * 2;
number = temporary;

每个操作都是原子的,但加在一起就不是原子的。这就是事务/关键部分的用途。

The standard is finalised, and every operation on all the standard integral specialisations of atomic<T> is atomic.

This doesn't mean all expressions involving standard integral atomic<T> are atomic.

number = number * 2;

is two operations:

temporary = number * 2;
number = temporary;

Each of them is atomic, but together they are not. This is what transactions/critical sections are for.

千柳 2024-12-03 17:39:42

是的。 原子operator++ 使用 atomic::fetch_add 这是一个原子操作。

http://www.open-std.org /jtc1/sc22/wg21/docs/papers/2011/n3242.pdf 页。 1127

Yes. atomic<int> operator++ uses atomic<int>::fetch_add which is an atomic operation.

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf p. 1127

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