作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您能解释一下程序启动和不启动线程时变量初始化顺序的区别吗?
秒。 3.6.2/3 N3797 c++14 工作草案:
If a program starts a thread (30.3), the subsequent initialization of a variable is unsequenced with respect to the initialization of a variable defined in a different translation unit. Otherwise, the initialization of a variable is indeterminately sequenced with respect to the initialization of a variable defined in a different translation unit.
如果可能的话,请举例说明该规则。
最佳答案
Unsequenced 表示没有顺序 - 变量可以在不同线程上同时初始化。
不确定顺序 意味着一个顺序先于另一个 - 变量在同一线程上按顺序初始化 - 但未指定哪个先初始化。
关于c++ - 程序启动/不启动线程时的变量初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24572870/
我是一名优秀的程序员,十分优秀!