Integer index-able RAII container for non-copyable type(不可复制类型的整数可索引 RAII 容器)
问题描述
是否有标准容器具有与 vector<T>
相同的通用 API,但通过直接默认构造填充新位置?
Is there a standard container that has the same general API as vector<T>
but that populates new locations via direct default construction?
背景:
我有一个不允许复制但有一个默认构造函数的类型,我真正想做的是:
I have a type that disallows copying but has a default constructor and what I really want to do is this:
vector<NoCopy> bag(some_size);
// use bag[i]'s
return; // bag & contents get correctly cleaned up.
但是,这不起作用,因为 vector<T>(int)
是根据默认构造一个对象然后将其复制到每个新位置来实现的.
However, this doesn't work because vector<T>(int)
is implemented in terms of default constructing an object and then copying it into each of the new locations.
不是 C++0xB(又名 C++11)
Not C++0xB (a.k.a. C++11)
推荐答案
一种选择是升级到符合 C++11 的标准库实现.
One option would be to upgrade to a C++11-compliant Standard Library implementation.
在 C++11 中,vector(size_type)
构造函数默认将 N 个元素构造到容器中.它既不复制也不移动任何元素.
In C++11, the vector(size_type)
constructor default constructs N elements into the container. It neither copies nor moves any elements.
Visual C++ 2010 不支持这个 C++11 特性;我相信 Visual C++ 11 Developer Preview 确实正确支持它.我不知道最新版本的 libstdc++ 是否支持这个;我会怀疑 libc++ 会.
Visual C++ 2010 does not support this C++11 feature; I believe the Visual C++ 11 Developer Preview does correctly support it though. I do not know whether recent versions of libstdc++ support this; I would suspect that libc++ does.
这篇关于不可复制类型的整数可索引 RAII 容器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:不可复制类型的整数可索引 RAII 容器
基础教程推荐
- 设计字符串本地化的最佳方法 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01