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