std::uninitialized_copy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <memory> 中定义
|
||
template< class InputIt, class Size, class ForwardIt > ForwardIt uninitialized_copy_n( InputIt first, Size count, ForwardIt d_first); |
(C++11 起) | |
副本
count
first
一个未初始化的内存区开始在d_first
开始了一系列的元素。使用拷贝构造函数构造中的元素未初始化的区域.原文:
Copies
count
elements from a range beginning at first
to an uninitialized memory area beginning at d_first
. The elements in the uninitialized area are constructed using copy constructor.在初始化过程中,如果抛出一个异常,该函数有没有影响。
本章尚未完成 原因:update possible implementation to reflect this |
原文:
If an exception is thrown during the initialization, the function has no effects.
本章尚未完成 原因:update possible implementation to reflect this |
目录 |
[编辑] 参数
first | - | 要复制的元素的范围内的开始
原文: the beginning of the range of the elements to copy |
d_first | - | 的目标范围的开头
原文: the beginning of the destination range |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-ForwardIt 必须满足 ForwardIterator 的要求。
|
[编辑] 返回值
过去的最后一个元素的元素的迭代器,复制.
原文:
Iterator to the element past the last element copied.
[编辑] 复杂度
线性
count
.[编辑] 可能的实现
template<class InputIt, class Size, class ForwardIt> ForwardIt uninitialized_copy_n(InputIt first, Size count, ForwardIt d_first) { typedef typename std::iterator_traits<ForwardIt>::value_type Value; for (; count > 0; ++first, ++d_first, --count) { ::new (static_cast<void*>(&*d_first)) Value(*first); } return d_first; } |
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
一个未初始化的内存区域复制的对象范围 原文: copies a range of objects to an uninitialized area of memory (函数模板) |