目录

forward_list::assign

描述 (Description)

C ++函数std::forward_list::assign()通过替换旧的值为forward_list std::forward_list::assign() 。 新元素构建在从头到尾的范围内。

声明 (Declaration)

以下是std :: forward_list :: assign()函数形式std :: forward_list头的声明。

C++11

template <class InputIterator>
void assign (InputIterator first, InputIterator last);

参数 (Parameters)

  • first - 将迭代器输入到范围内的初始位置。

  • last - 将迭代器输入到范围内的最终位置。

返回值

没有。

异常 (Exceptions)

如果firstlast指定的范围无效,则结果未定义。

时间复杂

线性即O(n)

例子 (Example)

以下示例显示了std :: forward_list :: assign()函数的用法。

#include <iostream>
#include <forward_list>
using namespace std;
int main(void) {
   forward_list<int> fl1 = {1, 2, 3, 4, 5};
   forward_list<int> fl2;
   fl2.assign(fl1.begin(), fl1.end());
   cout << "List contains following elements" << endl;
   for (auto it = fl2.begin(); it != fl2.end(); ++it)
      cout << *it << endl;
   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

List contains following elements
1
2
3
4
5
↑回到顶部↑
WIKI教程 @2018