How to initialize a container of noncopyable with initializer list?(如何使用初始化列表初始化不可复制的容器?)
问题描述
可能重复:
我可以列出初始化一个只移动类型的向量吗?
我使用 gcc 4.6.1 编译这段代码
I use gcc 4.6.1 to compile this code
int main()
{
std::vector<std::unique_ptr<int>> vec({
std::unique_ptr<int>(new int(0)),
std::unique_ptr<int>(new int(1)),
});
return 0;
}
在 g++ 的抱怨中,有类似的东西
In what g++ complains there is something like
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.6.1/../../../../include/c++/4.6.1/bits/stl_construct.h:76:7: **error: use of deleted function 'std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&)** [with _Tp = int, _Dp = std::default_delete<int>, std::unique_ptr<_Tp, _Dp> = std::unique_ptr<int>]'
在这种情况下,g++ 似乎仍在尝试复制构造函数,尽管我放入初始化列表的是 r 值.那么如何使用初始化列表初始化一个不可复制的容器呢?
It seems g++ still tries copy constructor in this case, though what I have put into initializer list are r-values. So how could I initialize a container of noncopyable with initializer list?
推荐答案
您不能将对象移出初始化列表,因为它们只允许对其成员进行 const 访问.因此,您不能使用初始化列表和移动构造函数;它们只能被复制.
You can't move objects out of initializer lists, since they only allow const access to their members. As such, you can't use initializer lists and move constructors; they can only be copied.
这篇关于如何使用初始化列表初始化不可复制的容器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用初始化列表初始化不可复制的容器?
基础教程推荐
- 明确指定任何或所有枚举数的整数值 1970-01-01
- C++定义类对象 1970-01-01
- C++ #define 1970-01-01
- C++输入/输出运算符重载 1970-01-01
- end() 能否成为 stl 容器的昂贵操作 2022-10-23
- 分别使用%o和%x以八进制或十六进制格式显示整 1970-01-01
- 初始化变量和赋值运算符 1970-01-01
- 使用scanf()读取字符串 1970-01-01
- C语言访问数组元素 1970-01-01
- C++按值调用 1970-01-01