替换deque中的内容:assign()成员函数

  • Post author:
  • Post category:其他


通过迭代器可以修改deque中的内容,但是一次只能替换一个对象;利用assign()函数可以实现一次替换多个元素的目的。例子:


#include


“stdafx.h”


#include


<iostream>


#include


<deque>


#include


<algorithm>


using


namespace

std;


int

_tmain(

int

argc, _TCHAR* argv[])

{

deque<

int

> c1,c2;

deque<

int

>::

const_iterator



版权声明:本文为master_feng2009原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。