std::generate_n
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <algorithm> 中定义
|
||
template< class OutputIt, class Size, class Generator > void generate_n( OutputIt first, Size count, Generator g ); |
(至 C++11) (C++11 起) |
|
受让人的值,所产生的给定的函数对象
g
,开始的范围内,在第一count
元素first
,如果count>0
。什么都不做,否则.....原文:
Assigns values, generated by given function object
g
, to the first count
elements in the range beginning at first
, if count>0
. Does nothing otherwise.目录 |
[编辑] 参数
first | - | 的范围内的元素,以产生的开始
原文: the beginning of the range of elements to generate | |||||||||
count | - | 的元素,以产生数目
| |||||||||
g | - | generator function object that will be called. The signature of the function should be equivalent to the following:
The type Ret must be such that an object of type OutputIt can be dereferenced and assigned a value of type Ret. | |||||||||
类型要求 | |||||||||||
-OutputIt 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
(无)(至 C++11)
如果
count>0
,first
否则分配的最后一个元素的迭代器一个过去。 (C++11 起)原文:
Iterator one past the last element assigned if
count>0
, first
otherwise. (C++11 起)[编辑] 复杂度
究竟
count
g()
调用和任务,count>0
.原文:
Exactly
count
invocations of g()
and assignments, for count>0
.[编辑] 可能的实现
template< class OutputIt, class Size, class Generator > OutputIt generate_n( OutputIt first, Size count, Generator g ) { for( Size i = 0; i < count; i++ ) { *first++ = g(); } return first; } |
[编辑] 示例
下面的代码填充随机数的整数数组.
原文:
The following code fills an array of integers with random numbers.
#include <cstddef> #include <cstdlib> #include <iostream> #include <iterator> #include <algorithm> int main() { const std::size_t N = 5; int ar[N]; std::generate_n(ar, N, std::rand); // Using the C function rand() std::cout << "ar: "; std::copy(ar, ar+N, std::ostream_iterator<int>(std::cout, " ")); std::cout << "\n"; }
输出:
52894 15984720 41513563 41346135 51451456
[编辑] 另请参阅
将一个值赋给一定数目的元素 (函数模板) | |
将函数的结果保存于一个范围内 (函数模板) |