當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ Deque clear()用法及代碼示例


C++ Deque clear() 函數從雙端隊列中刪除所有元素,並將雙端隊列的大小減少到零。

用法

void clear();

參數

它不包含任何參數。

返回值

它不返回任何值。

示例

讓我們看一個簡單的例子

#include <iostream>
#include<deque>
using namespace std;
int main()
{
    deque<int> first;
    deque<int>::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 




相關用法


注:本文由純淨天空篩選整理自 C++ Deque clear()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。