vector<atomic_bool> 是否涉及合并向量元素?
Does vector<atomic_bool> involves coalescing vector elements?
如主题所述:vector<atomic_bool>
是否涉及以与 vector<bool>
相同的方式合并向量元素?
没有。 std::vector 只有一个专业,std::vector<bool>
。 bool
和 std::atmoic_bool
是两种不同的类型,因此 std::vector<atomic_bool>
将像 T
.
类型的其他 std::vector<T>
一样工作
如主题所述:vector<atomic_bool>
是否涉及以与 vector<bool>
相同的方式合并向量元素?
没有。 std::vector 只有一个专业,std::vector<bool>
。 bool
和 std::atmoic_bool
是两种不同的类型,因此 std::vector<atomic_bool>
将像 T
.
std::vector<T>
一样工作