std::indirect_array<T>::indirect_array
From cppreference.cn
< cpp | numeric | valarray | indirect array
(1) | ||
private: indirect_array(); |
(C++11 前) | |
public: indirect_array() = delete; |
(自 C++11 起) | |
public: indirect_array( const indirect_array& other ); |
(2) | |
2) 从另一个
indirect_array
other 构造 indirect_array
。[编辑] 参数
other | - | 要初始化的 indirect_array |
[编辑] 缺陷报告
以下行为变更缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
LWG 253 | C++98 | 复制构造函数是私有的 | 设为公有 |