std::vector<T,Allocator>::assign
来自 cppreference.com
void assign( size_type count, const T& value ); |
(1) | (constexpr 自 C++20 起) |
template< class InputIt > void assign( InputIt first, InputIt last ); |
(2) | (constexpr 自 C++20 起) |
void assign( std::initializer_list<T> ilist ); |
(3) | (自 C++11 起) (constexpr 自 C++20 起) |
替换容器的内容。
1) 用 count 个 value value 的副本替换内容。
2) 用范围
[
first,
last)
中的副本替换内容。如果任一参数是 *this 中的迭代器,则行为未定义。
如果 |
(直到 C++11) |
只有当 |
(自 C++11 起) |
3) 用来自初始化列表 ilist 的元素替换内容。
所有迭代器(包括 end()
迭代器)以及对元素的所有引用都将失效。
内容 |
[编辑] 参数
count | - | 容器的新大小 |
value | - | 用于初始化容器元素的值 |
first, last | - | 要复制元素的范围 |
ilist | - | 要复制值的初始化列表 |
[编辑] 复杂度
1) count 的线性。
2) first 和 last 之间距离的线性。
3) ilist.size() 的线性。
[编辑] 示例
以下代码使用 assign
将几个字符添加到 std::vector<char>
运行此代码
#include <vector> #include <iostream> #include <string> int main() { std::vector<char> characters; auto print_vector = [&]() { for (char c : characters) std::cout << c << ' '; std::cout << '\n'; }; characters.assign(5, 'a'); print_vector(); const std::string extra(6, 'b'); characters.assign(extra.begin(), extra.end()); print_vector(); characters.assign({'C', '+', '+', '1', '1'}); print_vector(); }
输出
a a a a a b b b b b b C + + 1 1
[编辑] 另请参阅
(C++23) |
将一系列值分配给容器 (公共成员函数) |
将值分配给容器 (公共成员函数) |