-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOperations1.cpp
More file actions
41 lines (33 loc) · 904 Bytes
/
Operations1.cpp
File metadata and controls
41 lines (33 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* \file Operations1.cpp
* \brief
*
* \todo
*/
#include <StdStream/StdStream.h>
#include <StdTest/StdTest.h>
#include <Stl.h>
struct Sample
{
Sample(){}
Sample(const Sample &)
{
std::cout<<"Sample copy constructor"<<std::endl;
}
};
int main()
{
std::vector<Sample> vecOfInts;
std::cout<<"Capacity :: "<<vecOfInts.capacity()<<std::endl;
std::cout<<"Size :: "<<vecOfInts.size()<<std::endl;
int capcity = vecOfInts.capacity();
for(int i = 0; i < capcity + 1; i++)
vecOfInts.push_back(Sample());
std::cout<<"Capacity :: "<<vecOfInts.capacity()<<std::endl;
std::cout<<"Size :: "<<vecOfInts.size()<<std::endl;
for(int i = 0; i < capcity + 1; i++)
vecOfInts.push_back(Sample());
std::cout<<"Capacity :: "<<vecOfInts.capacity()<<std::endl;
std::cout<<"Size :: "<<vecOfInts.size()<<std::endl;
return 0;
}