Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (22 loc) · 786 Bytes

clear.md

File metadata and controls

27 lines (22 loc) · 786 Bytes

clear

Description : This function removes all elements from the map container (which are destroyed), leaving the container with a size of 0.

Example :

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

int main(){
    map<char,int> m;
    //Suppose we add some entries in the map,example
    m['a'] = 14;
    m['d'] = 23;
    m['s'] = 16;
    m['f'] = 10;
    cout<<"This is the initial size of map : "<<m.size()<<endl;   //this will tell us the current size of the map
    m.clear();
    //Now again try to print the size of map after using clear()
    cout<<"This is the size after using clear() : "<<m.size(); //this should be 0 now,as we have cleared all of the elements from the map
    
    return 0;
}

Run Code