当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ vector::clear()用法及代码示例


C++ vector::clear() 函数

vector::clear() 是 "vector" 头文件的库函数,用于移除/清除向量的所有元素,在移除所有元素后生成 0 大小的向量。

注意:要使用矢量,请包括<vector>标题。

vector::clear() 函数的语法

    vector::clear();

参数: none——它什么都不接受。

返回值: void——它什么都不返回。

例:

    Input:
    vector<int> v1{ 10, 20, 30, 40, 50 };
    
    //clearing content of the vectors
    v1.clear();
    cout <> v1.size();

    Output:
    0

C++程序演示vector::clear()函数的例子

//C++ STL program to demonstrate example of
//vector::clear() function

#include <iostream>
#include <vector>
using namespace std;

int main()
{
    //vector declaration
    vector<int> v1{ 10, 20, 30, 40, 50 };

    //printing elements
    cout << "before clearing the elements..." << endl;
    cout << "size of v1:" << v1.size() << endl;
    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    //clearing all elements
    v1.clear();

    //printing elements
    cout << "after clearing the elements..." << endl;
    cout << "size of v1:" << v1.size() << endl;
    cout << "v1:";
    for (int x:v1)
        cout << x << " ";
    cout << endl;

    return 0;
}

输出

before clearing the elements...
size of v1:5
v1:10 20 30 40 50
after clearing the elements...
size of v1:0
v1:

参考:C++ vector::clear()



相关用法


注:本文由纯净天空筛选整理自 vector::clear() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。