命名空间
变体
操作

std::forward_list<T,Allocator>::assign

来自 cppreference.com
 
 
 
 
void assign( size_type count, const T& value );
(1) (自 C++11 起)
template< class InputIt >
void assign( InputIt first, InputIt last );
(2) (自 C++11 起)
void assign( std::initializer_list<T> ilist );
(3) (自 C++11 起)

替换容器的内容。

1)count 个 value value 的副本替换内容。
2) 用范围 [firstlast) 中的副本替换内容。如果任一参数是 *this 中的迭代器,则行为未定义。

如果 InputIt 是一个整型,则此重载的效果与重载 (1) 相同。

(直到 C++11)

仅当 InputIt 满足 LegacyInputIterator 时,此重载才参与重载解析。

(自 C++11 起)
3) 用来自初始化列表 ilist 的元素替换内容。

容器中所有元素的迭代器、指针和引用都将失效。

内容

[编辑] 参数

count - 容器的新大小
value - 用于初始化容器元素的值
first, last - 要从中复制元素的范围
ilist - 要从中复制值的初始化列表

[编辑] 复杂度

1) 线性于 count
2) 线性于 firstlast 之间的距离。
3) 线性于 ilist.size()

[编辑] 示例

以下代码使用 assign 将几个字符添加到一个 std::forward_list<char>

#include <forward_list>
#include <iostream>
#include <string>
 
int main()
{
    std::forward_list<char> characters;
 
    auto print_forward_list = [&]()
    {
        for (char c : characters)
            std::cout << c << ' ';
        std::cout << '\n';
    };
 
    characters.assign(5, 'a');
    print_forward_list();
 
    const std::string extra(6, 'b');
    characters.assign(extra.begin(), extra.end());
    print_forward_list();
 
    characters.assign({'C', '+', '+', '1', '1'});
    print_forward_list();
}

输出

a a a a a
b b b b b b
C + + 1 1

[编辑] 另请参阅

将一系列值分配给容器
(公共成员函数) [编辑]
将值分配给容器
(公共成员函数) [编辑]