Requirements for Classes Used in Vectors : vector « Vector « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Vector » vectorScreenshots 
Requirements for Classes Used in Vectors
   
#include <iostream>
#include <vector>

using namespace std;

template <class T>
void print(T& c){
   fortypename T::iterator i = c.begin(); i != c.end(); i++ ){
      std::cout << *i << endl;
   }
}
class Item
{
   public:
   Item();
   ~Item();
   Itemconst Item& );
   Item& operator=const Item& );

   private:

   static int default_constructor_calls_;
   static int assignment_calls_;
   static int copy_constructor_calls_;
   static int destructor_calls_;
};

inline
Item::Item()
cout << "\nCall " << ++default_constructor_calls_
     << " of default constructor";
}

inline
Item::Itemconst Item& )
{
   cout << "\nCall " << ++copy_constructor_calls_
      << " of copy constructor";
}

inline
Item::~Item()
{  cout << "\nCall " << ++destructor_calls_ << " of destructor"}

inline
Item& Item::operator=const Item& )
{
   cout << "\nCall " << ++assignment_calls_
      << " of assignment operator";
   return *this;
}

int Item::default_constructor_calls_ = 0;
int Item::assignment_calls_ = 0;
int Item::copy_constructor_calls_ = 0;
int Item::destructor_calls_ = 0;

int main( )
{
   vector<Item> d);
 
   d.resized.capacity() );

   d.push_backItem() );

   d.erased.begin() );
}
  
    
    
  
Related examples in the same category
1.Demonstrating the simplest STL vector constructors: duplicate chars
2.Demonstrating the simplest STL vector constructors: empty vector
3.Use generic vector to create vector of chars
4.Use generic vector to create vector of integers
5.Use generic vector to create vector of strings
6.Assign Items in int array to vector
7.Store a class object in a vectorStore a class object in a vector
8.Read keyboard input to a vector
9.Add class to a vector and then delete them one by one
10.Pass vector to a function
11.Computing an inner product of tuples represented as vectors
12.Assign value to the last Item
13.Demonstrating STL vector copying constructors
14.Demonstrating STL vector constructors with a user-defined type and showing copying explicitly
15.Demonstrating STL vector constructors with a user-defined type
16.Pass vector of integer to a function
17.Use typedef to define new type based on vector
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.