SlideShare une entreprise Scribd logo
1  sur  22
Topic-
                Constructor & destructor
                                  Submitted by-
                                 Megha Agrawal
           SUBMITTED TO:
                               Enroll. -0101it101039
           I.T. DEPARTMENT           Branch-
           U.I.T.,R.G.P.V.         Information
           BHOPAL              technology(3rd sem.)
9/7/2012
9/7/2012
Constructors
 It is a special member function of a
class , which is used to construct the
memory of object & provides
initialization.
Its name is same as class name.
It must be declared in public part
otherwise result will be error.
  9/7/2012
It does not return any value not even
void otherwise result will be error.
It can be defined by inline /offline
method.
Does not need to call because it get call
automatically whenever object is
created.
It can be called explicitly also.
It can take parameters.
Constructer can be overloaded.
It does not inherit.
 9/7/2012
Destructors

•It is a special member function of a class , which
is used to destroy the memory of object
•Its name is same as class name but till sign
followed by destructor.
•It must be declared in public part otherwise
result will be error.
•It does not return any value not even void
otherwise result will be error.
•It can be defined by inline /offline method.
  9/7/2012
•Does not need to call because it get call
automatically whenever object destroy from his
scope.
•It can be called explicitly also using delete
operator.
•It does not take parameters.
•Destructor can not be overloaded , only one
destructor is possible in a class.
•It does not inherit.


 9/7/2012
Types of constructor
i. default constructor
ii. parameterized constructor
iii. default parameterized constructor
iv. copy constructor
v. dynamic constructor
Their is no type of destructor.



9/7/2012
Example 1-
 #include<iostream.h>
 class demo
 {
 int x,y;
 };
 void main()
 {
 demo d1,d2,d3;
 }

 Note- if we are not defining user define constructor and
  destructor then compiler create its own constructor and
  destructor to create the memory of object and to
  destroy the memory of object but we cannot initialize
  our object in compiler constructor.
 9/7/2012
Example of default constructor.
#include<iostream.h>            void main()
class demo                      {
{int x,,y;                      demo d1,d2,d3;//implicit
public:                            call of default
                                   constructor
demo()                                             output-
                                }
{                                                  dc-65119
x=0,y=0;                                           dc-65125
cout<<"n dc"<<(unsigned int)this;                 dc-65129
}                                                  od-65129
~demo(){                                           od-65125
cout<<"n od"<<(unsigned                           od-65119
int)this;
}};
  9/7/2012
NOTE-
• In this scope compiler create the memory
  of object sequentially and destroy in
  reverse order because "c++"compiler uses
  the concept of stack in memory allocation
  and de allocation.        d3
                                  d2
                             d1
                        d3
           Allocation




                                   Delocation
                        d2
                        d1

9/7/2012
Example of parameterized constructor
#include<iostream.h>   void main()
class demo             {
{int x,,y;             demo d1,d2;//implicit call of default
                          constructor
public:
                       demo d3(5,7);// implicit call of
demo()                    parameterized constructor
{                      demo d4=demo(10,12);//explicit call of
x=0,y=0;                  parameterized constructor output-
                       demo d5;                         dc
cout<<"n dc";}
                       }                                dc
~demo()
                                                     pc
{                                                    pc
cout<<"n od";}                                      dc
demo(int a, int b)                                   od
{                                                    od
                                                     od
x=a,y=b;
                                                     od
cout<<"n pc";
     9/7/2012                                        od
}};
Example of default & default
parameterized constructor
                              void main()
#include<iostream.h>
class demo
                              {                                           output
                              demo d1,d2;//implicit call of default       Dc
{int x,,y,z;                                                              Dc
                                 constructor
public:                                                                   Dpc
                              demo d3(5,7);// implicit call of default    Dpc
demo()                           par. constructor                         Dpc
{                             demo d4(1,2,3);//explicit call of default   dpc
x=0,y=0,z=0;                   par. constructor                           dpc
cout<<"n dc";}                                                           Od
                              demo d5=demo(10,12);                        Dpc
~demo()                       demo d6=demo(1,8,2);                        Od
{                             d1=demo(9,9);//explicit call for existing   Od
cout<<"n od";}                                                           Od
                                 object
                                                                          Od
demo(int a, int b,int c=10)   d2=demo(1,7,1);//explicit call for          Od
{                                existing object                          Od
x=a,y=b,z=c;                  }                                           Od

cout<<"n dpc";}};
   9/7/2012
Invalid definition of default
            parameterized constructor
Case 1-                     Case2-
Demo(int a,int b,int c=8)   Demo(int a,int b=8,int c)
{                           {
----------;                 ----------;
----------;                 ----------;
----------;                 ----------;
}                           }


     Demo( , ,8)             Demo( ,8, )


9/7/2012
Copy constructor



9/7/2012
Its a kind of constructor n gets called in
  following cases-
case 1-
when ever we are going to initialize any new object by existing object.
Ex-
demod4(d2);
demod4=d2;
case2-
when ever we pass object as an arguments a function compiler create the
   memory of formal parameter(object)using copy constructor.
EX-void call(demo a, demo b)
{
demo c;
}
called by-
call(d4 ,d5)

  9/7/2012
case 3-
when ever any function return object as a return value
compiler create a temporary object using copy constructor to
return this value to one fn to another fn.
Ex-
demo call(_ _ _)
{
demo c;
.
.
.
return c;

}
NOTE-Compiler create one temporary object using
copy constructor to return this value.
9/7/2012
syntax:-
class_name(const class_name & ref_object)
{
---
---
---
}
NOTE-
    if ‘&’ is not used in copy constructor compiler will
   create a new object in place of sharing the memory
   and constructor is used to create an object so its a
   recursive process and const keyword is used so that
   no change can be made in existing object.

9/7/2012
Example-
#include<iostream.h>   demo (const demo &d)
class demo             {
{int x,,y;             x=d.x;
public:                y=d.y;
demo()                 cout<<"n cc";                          output-
{                      }};                                      dc,dc
x=0,y=0;               void main()                              pc,pc
                                                               CC,CC,
cout<<"n dc";}        {
                                                               od,od,
~demo()                demo d1,d2;//implicit call of default   od,od,
{                          constructor                         od,od
cout<<"n od";}        demo d3(5,7);
demo(int a, int b)     demo d4=(10,12);
{                      demo d5(D3);
x=a,y=b;               demo d6=d4;
cout<<"n pc";}        }
9/7/2012
WAP of sum using copy constructor
#inckude<iostream.h>
class demo             demo sum(demo a, demo b)
                                                  Output-
{                      {
                       demo c;                     Dc,dc
int x,,y;
                       c.x=a.x+b.x;                Pc,pc
public:
demo()
                       c.y=a.y+b.y;                Cc,cc
                       return c;                    dc
{x=0,y=0;
                       }
cout<<"n dc";}                                    Cc,od
                       void main()
~demo()                {                          Od,od,o
{cout<<"n od";}       demo d1,d2;                   d
demo(int a, int b)     demo d3(5,7);              Od,od,
{x=a,y=b;              demo d4=demo(10,12);        Od,od
cout<<"n pc";}        d2=d1.sum(d3,d4);
demo (const demo &d)   }
{x=d.x;
y=d.y;
cout<<"n cc";}};
 9/7/2012
In user define Constructors &
   Destructors programming, we can not
   create any other type of object if its
   constructor definition is not define
   otherwise result will be compile time
   error.

9/7/2012
BIBLIOGRAPHY:

• www.google.com
• www.wikipedia.com
• Computer science C++ by Sumita
  Arora.
• C++ by E Balagurusamy.


9/7/2012
9/7/2012

Contenu connexe

Tendances

Tendances (20)

Inheritance in c++
Inheritance in c++Inheritance in c++
Inheritance in c++
 
Object-oriented concepts
Object-oriented conceptsObject-oriented concepts
Object-oriented concepts
 
Constructor and Types of Constructors
Constructor and Types of ConstructorsConstructor and Types of Constructors
Constructor and Types of Constructors
 
Object Oriented Programming
Object Oriented ProgrammingObject Oriented Programming
Object Oriented Programming
 
Inheritance in c++
Inheritance in c++Inheritance in c++
Inheritance in c++
 
Oops ppt
Oops pptOops ppt
Oops ppt
 
C++ OOPS Concept
C++ OOPS ConceptC++ OOPS Concept
C++ OOPS Concept
 
Recursive Function
Recursive FunctionRecursive Function
Recursive Function
 
Basic concept of OOP's
Basic concept of OOP'sBasic concept of OOP's
Basic concept of OOP's
 
Object Oriented Programming Using C++
Object Oriented Programming Using C++Object Oriented Programming Using C++
Object Oriented Programming Using C++
 
Constructors and Destructor in C++
Constructors and Destructor in C++Constructors and Destructor in C++
Constructors and Destructor in C++
 
Boxing & unboxing
Boxing & unboxingBoxing & unboxing
Boxing & unboxing
 
Storage class in C Language
Storage class in C LanguageStorage class in C Language
Storage class in C Language
 
C functions
C functionsC functions
C functions
 
inheritance c++
inheritance c++inheritance c++
inheritance c++
 
C++ classes
C++ classesC++ classes
C++ classes
 
RECURSION IN C
RECURSION IN C RECURSION IN C
RECURSION IN C
 
Python exception handling
Python   exception handlingPython   exception handling
Python exception handling
 
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
 
Exception Handling in C++
Exception Handling in C++Exception Handling in C++
Exception Handling in C++
 

Similaire à Constructors & destructors

Declaring friend function with inline code
Declaring friend function with inline codeDeclaring friend function with inline code
Declaring friend function with inline code
Rajeev Sharan
 
C++totural file
C++totural fileC++totural file
C++totural file
halaisumit
 
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptxCONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
DeepasCSE
 
More on Classes and Objects
More on Classes and ObjectsMore on Classes and Objects
More on Classes and Objects
Payel Guria
 

Similaire à Constructors & destructors (20)

Constructor and Destructors in C++
Constructor and Destructors in C++Constructor and Destructors in C++
Constructor and Destructors in C++
 
Constructor and destructor
Constructor and destructorConstructor and destructor
Constructor and destructor
 
Test Engine
Test EngineTest Engine
Test Engine
 
Lecture07
Lecture07Lecture07
Lecture07
 
Declaring friend function with inline code
Declaring friend function with inline codeDeclaring friend function with inline code
Declaring friend function with inline code
 
C++totural file
C++totural fileC++totural file
C++totural file
 
C++ tutorial
C++ tutorialC++ tutorial
C++ tutorial
 
C++ idioms.pptx
C++ idioms.pptxC++ idioms.pptx
C++ idioms.pptx
 
Test Engine
Test EngineTest Engine
Test Engine
 
L10
L10L10
L10
 
The Big Three
The Big ThreeThe Big Three
The Big Three
 
Constructors and Destructors
Constructors and DestructorsConstructors and Destructors
Constructors and Destructors
 
Introduction to CUDA C: NVIDIA : Notes
Introduction to CUDA C: NVIDIA : NotesIntroduction to CUDA C: NVIDIA : Notes
Introduction to CUDA C: NVIDIA : Notes
 
Objective c beginner's guide
Objective c beginner's guideObjective c beginner's guide
Objective c beginner's guide
 
data Structure Lecture 1
data Structure Lecture 1data Structure Lecture 1
data Structure Lecture 1
 
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptxCONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
CONSTRUCTORS, DESTRUCTORS AND OPERATOR OVERLOADING.pptx
 
Inheritance and polymorphism
Inheritance and polymorphismInheritance and polymorphism
Inheritance and polymorphism
 
Course1
Course1Course1
Course1
 
Tut Constructor
Tut ConstructorTut Constructor
Tut Constructor
 
More on Classes and Objects
More on Classes and ObjectsMore on Classes and Objects
More on Classes and Objects
 

Plus de ForwardBlog Enewzletter (10)

Sorting searching
Sorting searchingSorting searching
Sorting searching
 
Pn junction
Pn junctionPn junction
Pn junction
 
Feedback amplifiers
Feedback amplifiersFeedback amplifiers
Feedback amplifiers
 
Oscillators
OscillatorsOscillators
Oscillators
 
Compile time polymorphism
Compile time polymorphismCompile time polymorphism
Compile time polymorphism
 
Oo ps
Oo psOo ps
Oo ps
 
Parameter passing to_functions_in_c
Parameter passing to_functions_in_cParameter passing to_functions_in_c
Parameter passing to_functions_in_c
 
Propositional logic
Propositional logicPropositional logic
Propositional logic
 
Stack a Data Structure
Stack a Data StructureStack a Data Structure
Stack a Data Structure
 
Presentation on graphs
Presentation on graphsPresentation on graphs
Presentation on graphs
 

Dernier

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 

Dernier (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

Constructors & destructors

  • 1. Topic- Constructor & destructor Submitted by- Megha Agrawal SUBMITTED TO: Enroll. -0101it101039 I.T. DEPARTMENT Branch- U.I.T.,R.G.P.V. Information BHOPAL technology(3rd sem.) 9/7/2012
  • 3. Constructors  It is a special member function of a class , which is used to construct the memory of object & provides initialization. Its name is same as class name. It must be declared in public part otherwise result will be error. 9/7/2012
  • 4. It does not return any value not even void otherwise result will be error. It can be defined by inline /offline method. Does not need to call because it get call automatically whenever object is created. It can be called explicitly also. It can take parameters. Constructer can be overloaded. It does not inherit. 9/7/2012
  • 5. Destructors •It is a special member function of a class , which is used to destroy the memory of object •Its name is same as class name but till sign followed by destructor. •It must be declared in public part otherwise result will be error. •It does not return any value not even void otherwise result will be error. •It can be defined by inline /offline method. 9/7/2012
  • 6. •Does not need to call because it get call automatically whenever object destroy from his scope. •It can be called explicitly also using delete operator. •It does not take parameters. •Destructor can not be overloaded , only one destructor is possible in a class. •It does not inherit. 9/7/2012
  • 7. Types of constructor i. default constructor ii. parameterized constructor iii. default parameterized constructor iv. copy constructor v. dynamic constructor Their is no type of destructor. 9/7/2012
  • 8. Example 1- #include<iostream.h> class demo { int x,y; }; void main() { demo d1,d2,d3; } Note- if we are not defining user define constructor and destructor then compiler create its own constructor and destructor to create the memory of object and to destroy the memory of object but we cannot initialize our object in compiler constructor. 9/7/2012
  • 9. Example of default constructor. #include<iostream.h> void main() class demo { {int x,,y; demo d1,d2,d3;//implicit public: call of default constructor demo() output- } { dc-65119 x=0,y=0; dc-65125 cout<<"n dc"<<(unsigned int)this; dc-65129 } od-65129 ~demo(){ od-65125 cout<<"n od"<<(unsigned od-65119 int)this; }}; 9/7/2012
  • 10. NOTE- • In this scope compiler create the memory of object sequentially and destroy in reverse order because "c++"compiler uses the concept of stack in memory allocation and de allocation. d3 d2 d1 d3 Allocation Delocation d2 d1 9/7/2012
  • 11. Example of parameterized constructor #include<iostream.h> void main() class demo { {int x,,y; demo d1,d2;//implicit call of default constructor public: demo d3(5,7);// implicit call of demo() parameterized constructor { demo d4=demo(10,12);//explicit call of x=0,y=0; parameterized constructor output- demo d5; dc cout<<"n dc";} } dc ~demo() pc { pc cout<<"n od";} dc demo(int a, int b) od { od od x=a,y=b; od cout<<"n pc"; 9/7/2012 od }};
  • 12. Example of default & default parameterized constructor void main() #include<iostream.h> class demo { output demo d1,d2;//implicit call of default Dc {int x,,y,z; Dc constructor public: Dpc demo d3(5,7);// implicit call of default Dpc demo() par. constructor Dpc { demo d4(1,2,3);//explicit call of default dpc x=0,y=0,z=0; par. constructor dpc cout<<"n dc";} Od demo d5=demo(10,12); Dpc ~demo() demo d6=demo(1,8,2); Od { d1=demo(9,9);//explicit call for existing Od cout<<"n od";} Od object Od demo(int a, int b,int c=10) d2=demo(1,7,1);//explicit call for Od { existing object Od x=a,y=b,z=c; } Od cout<<"n dpc";}}; 9/7/2012
  • 13. Invalid definition of default parameterized constructor Case 1- Case2- Demo(int a,int b,int c=8) Demo(int a,int b=8,int c) { { ----------; ----------; ----------; ----------; ----------; ----------; } } Demo( , ,8) Demo( ,8, ) 9/7/2012
  • 15. Its a kind of constructor n gets called in following cases- case 1- when ever we are going to initialize any new object by existing object. Ex- demod4(d2); demod4=d2; case2- when ever we pass object as an arguments a function compiler create the memory of formal parameter(object)using copy constructor. EX-void call(demo a, demo b) { demo c; } called by- call(d4 ,d5) 9/7/2012
  • 16. case 3- when ever any function return object as a return value compiler create a temporary object using copy constructor to return this value to one fn to another fn. Ex- demo call(_ _ _) { demo c; . . . return c; } NOTE-Compiler create one temporary object using copy constructor to return this value. 9/7/2012
  • 17. syntax:- class_name(const class_name & ref_object) { --- --- --- } NOTE- if ‘&’ is not used in copy constructor compiler will create a new object in place of sharing the memory and constructor is used to create an object so its a recursive process and const keyword is used so that no change can be made in existing object. 9/7/2012
  • 18. Example- #include<iostream.h> demo (const demo &d) class demo { {int x,,y; x=d.x; public: y=d.y; demo() cout<<"n cc"; output- { }}; dc,dc x=0,y=0; void main() pc,pc CC,CC, cout<<"n dc";} { od,od, ~demo() demo d1,d2;//implicit call of default od,od, { constructor od,od cout<<"n od";} demo d3(5,7); demo(int a, int b) demo d4=(10,12); { demo d5(D3); x=a,y=b; demo d6=d4; cout<<"n pc";} } 9/7/2012
  • 19. WAP of sum using copy constructor #inckude<iostream.h> class demo demo sum(demo a, demo b) Output- { { demo c; Dc,dc int x,,y; c.x=a.x+b.x; Pc,pc public: demo() c.y=a.y+b.y; Cc,cc return c; dc {x=0,y=0; } cout<<"n dc";} Cc,od void main() ~demo() { Od,od,o {cout<<"n od";} demo d1,d2; d demo(int a, int b) demo d3(5,7); Od,od, {x=a,y=b; demo d4=demo(10,12); Od,od cout<<"n pc";} d2=d1.sum(d3,d4); demo (const demo &d) } {x=d.x; y=d.y; cout<<"n cc";}}; 9/7/2012
  • 20. In user define Constructors & Destructors programming, we can not create any other type of object if its constructor definition is not define otherwise result will be compile time error. 9/7/2012
  • 21. BIBLIOGRAPHY: • www.google.com • www.wikipedia.com • Computer science C++ by Sumita Arora. • C++ by E Balagurusamy. 9/7/2012