As Per Wiki-->http://en.wikipedia.org/wiki/Special_member_functions
- Default constructor -->if no other constructor is explicitly declared
- Copy constructor --> if no move constructor or move assignment operator is explicitly declared.If a destructor is declared generation of a copy constructor is deprecated.
- Move constructor -->if no copy constructor, move assignment operator or destructor is explicitly declared.
- Copy assignment operator -->if no move constructor or move assignment operator is explicitly declared.
If a destructor is declared generation of a copy assignment operator is deprecated.
- Move assignment operator --> if no copy constructor, copy assignment operator or destructor is explicitly declared.
- Destructor