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

Latest commit

 

History

History
18 lines (13 loc) · 573 Bytes

capacity.md

File metadata and controls

18 lines (13 loc) · 573 Bytes

capacity

Description :

  • Returns the storage space currently allocated to vector

-The size returned is greater than or equal to vector size, the extra space is to accommodate expansion without the need to relocate vector each time

Example

   //Declare the vector
   std::vector<int> myvector{1,2,3,4,5};

   //when capacity is exhausted, vector automatically expands
   std::cout<<"The maximum capacity of the vector is: "<< myvector.capacity();

See Sample code Run Code