No Image

C++ Copy constructors

February 14, 2010 muthu 0

Copy constructor is a constructor function with the same name as the class used to make deep copy of objects. There are 3 important places […]

No Image

C++ Overloading Operators

February 14, 2010 muthu 0

   C++ overloading is the mechanism by which the language standard operators are used for customized operations of the classes. For example if we are […]

No Image

C++ Virtual destructors

February 14, 2010 muthu 0

   Ask any programmer, he’ll immediately reply saying “A destructor is a member function of a class, which gets called when the object goes out […]

No Image

C++ Vector

February 14, 2010 muthu 0

   C++ vector is a container template available with Standard Template Library pack. This C++ vector can be used to store similar typed objects sequentially, […]

No Image

C++ Class Templates

February 14, 2010 muthu 0

C++ Class Templates are used where we have multiple copies of code for different data types with the same logic. If a set of functions […]