- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
std::atomic
模板的一般版本有一个值构造函数声明为
constexpr atomic( T desired );
(参见 here )
据说模板的bool
、积分和指针特化有(引自cppreference)
standard layout, trivial default constructors, and trivial destructors. They support aggregate initialization syntax.
这是有道理的,因为只有普通默认构造函数和 dtor(即没有值构造函数)的类有资格作为聚合,因此支持聚合初始化语法。但是,以下代码在 GCC 和 clang 上都可以正常编译:
std::atomic_int i(9);
这意味着应该存在一个值构造函数。这是否违反了标准?
引用自C++11标准
These specializations shall have standard layout, trivial default constructors, and trivial destructors. They shall each support aggregate initialization syntax.
这也没有说明此类特化是否应该具有值(value)主体。
最佳答案
标准根据 [atomics.types.generic] 规定了一些类型定义:
There shall be named types corresponding to the integral specializations of atomic, as specified in Table 146, and a named type
atomic_bool
corresponding to the specifiedatomic<bool>
. Each named type is either atypedef
to the corresponding specialization or a base class of the corresponding specialization. If it is a base class, it shall support the same member functions as the corresponding specialization.
在表 146 中,我们看到 atomic_int
是 atomic<int>
的类型定义. integral 特化在同一节中定义为:
template <> struct atomic<integral > {
...
constexpr atomic(integral ) noexcept;
...
};
代入 int
对于积分,我们有一个constexpr atomic_int(int )
构造函数。坦率地说,如果您不能初始化 atomic<T>
会很奇怪用T
...
关于c++ - std::atomic 的标准特化不应该缺少值构造函数吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29761513/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
正如您在 this travis.yml 中看到的那样文件,我的代码依赖于一些第三方库,我在构建项目之前将它们安装在远程系统上。 Travis 每次推送提交时都会下载并构建这些库,这可以避免吗?我的意
我是一名优秀的程序员,十分优秀!