std::copy_n
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <algorithm> 中定义
|
||
template< class InputIt, class Size, class OutputIt > OutputIt copy_n( InputIt first, Size count, OutputIt result ); |
||
Copies exactly count
values from the range beginning at first
to the range beginning at result
, if count>0
. Does nothing otherwise.
目录 |
[编辑] 参数
first | - | the beginning of the range of elements to copy from |
count | - | number of the elements to copy |
result | - | 的目标范围的开头
原文: the beginning of the destination range |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-OutputIt 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
Iterator in the destination range, pointing past the last element copied if count>0
or first
otherwise.
[编辑] 复杂度
Exactly count
assignments, if count>0
.
[编辑] 可能的实现
template< class InputIt, class Size, class OutputIt> OutputIt copy_n(InputIt first, Size count, OutputIt result) { if (count > 0) { *result++ = *first; for (Size i = 1; i < count; ++i) { *result++ = *++first; } } return result; } |
[编辑] 示例
#include <iostream> #include <string> #include <algorithm> #include <iterator> int main() { std::string in = "1234567890"; std::string out; std::copy_n(in.begin(), 4, std::back_inserter(out)); std::cout << out << '\n'; }
输出:
1234
[编辑] 另请参阅
(C++11) |
将某一范围的元素复制到一个新的位置 (函数模板) |