std::copy_n
定义于头文件 <algorithm>
|
||
(1) | ||
template< class InputIt, class Size, class OutputIt > OutputIt copy_n( InputIt first, Size count, OutputIt result ); |
(C++11 起) (C++20 前) |
|
template< class InputIt, class Size, class OutputIt > constexpr OutputIt copy_n( InputIt first, Size count, OutputIt result ); |
(C++20 起) | |
template< class ExecutionPolicy, class ForwardIt1, class Size, class ForwardIt2 > ForwardIt2 copy_n( ExecutionPolicy&& policy, ForwardIt1 first, Size count, ForwardIt2 result ); |
(2) | (C++17 起) |
1) 若
count>0
,则准确复制来自始于 first
的范围的 count
个值到始于 result
的范围。正式而言,对于每个非负整数 i < n
进行 *(result + i) = *(first + i) 。不同于 std::copy ,本算法容许重叠。2) 同 (1) ,但按照
policy
执行。此重载仅若 std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> (C++20 前)std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> (C++20 起) 为 true 才参与重载决议。。参数
first | - | 复制来源的元素范围起始 |
count | - | 要复制的元素数 |
result | - | 目标范围起始 |
policy | - | 所用的执行策略。细节见执行策略。 |
类型要求 | ||
-InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。
| ||
-OutputIt 必须满足遗留输出迭代器 (LegacyOutputIterator) 的要求。
| ||
-ForwardIt1, ForwardIt2 必须满足遗留向前迭代器 (LegacyForwardIterator) 的要求。
|
复制
若 count>0
则为指向目标范围中最后被复制元素后一元素的迭代器,否则为 result
。
复杂度
若 count>0
,则准确赋值 count
次。
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 若作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
为标准策略之一,则调用 std::terminate 。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 若算法无法分配内存,则抛出 std::bad_alloc 。
可能的实现
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) |
将某一范围的元素复制到一个新的位置 (函数模板) |