std::uninitialized_copy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <memory> 中定义
|
||
template< class InputIt, class ForwardIt > ForwardIt uninitialized_copy( InputIt first, InputIt last, ForwardIt d_first ); |
||
将元素的范围内
[first, last)
一个未初始化的内存区开始在d_first
。使用拷贝构造函数构造中的元素未初始化的区域.原文:
Copies elements from the range
[first, last)
to an uninitialized memory area beginning at d_first
. The elements in the uninitialized area are constructed using copy constructor.目录 |
[编辑] 参数
first, last | - | 的范围内的元素进行复制
|
d_first | - | 的目标范围的开头
原文: the beginning of the destination range |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-ForwardIt 必须满足 ForwardIterator 的要求。
|
[编辑] 返回值
过去的最后一个元素的元素的迭代器,复制.
原文:
Iterator to the element past the last element copied.
[编辑] 复杂度
线性
first
和last
之间的距离原文:
Linear in the distance between
first
and last
[编辑] 可能的实现
template<class InputIt, class ForwardIt> ForwardIt uninitialized_copy(InputIt first, InputIt last, ForwardIt d_first) { typedef typename std::iterator_traits<ForwardIt>::value_type Value; for (; first != last; ++first, ++d_first) { ::new (static_cast<void*>(&*d_first)) Value(*first); } return d_first; } |
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C++11) |
复制的对象的数量的未初始化区域的内存 原文: copies a number of objects to an uninitialized area of memory (函数模板) |