std::fill
来自cppreference.com
在标头 <algorithm> 定义
|
||
(1) | ||
template< class ForwardIt, class T > void fill( ForwardIt first, ForwardIt last, const T& value ); |
(C++20 起为 constexpr ) (C++26 前) |
|
template< class ForwardIt, class T = typename std::iterator_traits <ForwardIt>::value_type > |
(C++26 起) | |
(2) | ||
template< class ExecutionPolicy, class ForwardIt, class T > void fill( ExecutionPolicy&& policy, |
(C++17 起) (C++26 前) |
|
template< class ExecutionPolicy, class ForwardIt, class T = typename std::iterator_traits |
(C++26 起) | |
1) 将给定的 value 赋给
[
first,
last)
中的所有元素。2) 同 (1),但按照 policy 执行。
此重载只有在
是 true 时时才会参与重载决议。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> |
(C++20 起) |
如果 value 不可写入 first,那么程序非良构。
参数
first, last | - | 要修改的元素范围 |
value | - | 要赋的值 |
policy | - | 所用的执行策略。细节见执行策略。 |
类型要求 | ||
-ForwardIt 必须满足老式向前迭代器 (LegacyForwardIterator) 。
|
复杂度
赋值 std::distance(first, last) 次。
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 如果作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
是标准策略之一,那么调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,那么抛出 std::bad_alloc。
可能的实现
fill |
---|
template<class ForwardIt, class T = typename std::iterator_traits<ForwardIt>::value_type> void fill(ForwardIt first, ForwardIt last, const T& value) { for (; first != last; ++first) *first = value; } |
注解
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__cpp_lib_algorithm_default_value_type |
202403 | (C++26) | 算法中的列表初始化 (1,2) |
示例
运行此代码
#include <algorithm> #include <complex> #include <iostream> #include <vector> void println(const auto& seq) { for (const auto& e : seq) std::cout << e << ' '; std::cout << '\n'; } int main() { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8}; println(v); // 将所有元素设为 8 std::fill(v.begin(), v.end(), 8); println(v); std::vector<std::complex<double>> nums{{1, 3}, {2, 2}, {4, 8}}; println(nums); #ifdef __cpp_lib_algorithm_default_value_type std::fill(nums.begin(), nums.end(), {4, 2}); #else std::fill(nums.begin(), nums.end(), std::complex<double>{4, 2}); #endif println(nums); }
输出:
0, 1, 2, 3, 4, 5, 6, 7, 8 8, 8, 8, 8, 8, 8, 8, 8, 8 (1,3), (2,2), (4,8) (4,2), (4,2), (4,2)
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 283 | C++98 | T 需要是可复制赋值 (CopyAssignable) 的,但是 T 不一定可写入 ForwardIt
|
改成要求可写入 |
参阅
将一个给定值复制赋值给一个范围内的 N 个元素 (函数模板) | |
(C++11) |
将某一范围的元素复制到一个新的位置 (函数模板) |
将相继的函数调用结果赋值给一个范围中的每个元素 (函数模板) | |
将一个函数应用于某一范围的各个元素,并在目标范围存储结果 (函数模板) | |
(C++20) |
以特定值向范围的各元素赋值 (niebloid) |