📜  C++ STL-Deque.clear()函数

📅  最后修改于: 2020-10-17 07:02:34             🧑  作者: Mango

C++双端队列clear()

C++ Deque clear()函数从双端队列中删除所有元素,并且双端队列的大小减小为零。

句法

void clear();

参数

它不包含任何参数。

返回值

它不返回任何值。

让我们看一个简单的例子

#include 
#include
using namespace std;
int main()
{
    deque first;
    deque::iterator itr;
    cout<<"Content of first deque:";
    first.push_back(1);
    first.push_back(2);
    first.push_back(3);
    for(itr=first.begin();itr!=first.end();++itr)
    cout<<*itr<<" ";
    cout<<'\n';
    first.clear();
    cout<<"Now,Content of first deque:";
    first.push_back(4);
    first.push_back(5);
    first.push_back(6);
    for(itr=first.begin();itr!=first.end();++itr)
    cout<<*itr<<" ";
    return 0;
}

输出:

Content of first deque:1 2 3 
Now,Content of first deque:4 5 6