Constructor And Types Of Constructor

constructor
constructor

Constructor:-

Constructor  is a special member function. It has the same name as that of its class in which it is declared.

This is  used to initialize the properties of a class in which, it is a member function.

It called automatically whenever an object of a class is created. It does not have any return type. This can not be  void also .

We can do many things nicely with the help of this special function. Its nice to use.

Syntax,

class <class name>

{

…………………………..

public:

<classname>(parameters)

…………………………………………

…………………………………………

};

<classname>::<classname> (parameter)

{

…………………………………………………….

……………………………………………………..

}

Example,

#include<iostream.h>

#include<conio.h>

class square

{

int side;

public:

square ()

{

side = 5;

}

int area ()

{return (side*side);

} };

void main ()

{

clrscr ();

square s1;

cout<<”  Area of a square: – “ <<s1 area ();

getch ();

}

output,

Area of a square: – 25

 

There are following type of constructors,

Default:-

A constructor in which no arguments are passed is known as default constructor.

When we does not define any constructor then compiler automatically call a constructor of its own with no arguments. This type of constructor does not do any initialization, since we explicitly didn’t define any constructor with initialization of properties of class.

Parameterized:-

constructor which take parameters is called parameterized constructor.

With the help of, this type of function we can give any value to a variable  when objects of that class is created.

Example,

#include<iostream.h>

#include<conio.h>

class square

{

int side;

public:

square (int x)

{

side = x;

}

int area ()

{return (side*side);

} };

void main ()

{

clrscr ();

square s1(5);

cout<<”  Area of a square: – “ <<s1.area ();

getch ();

}

Output,

Area of a square: – 25

You Also Can Visit For More Knowledge In C++:-

Visit Your YouTube  Channel:-  Think , About It

Visit Your Website :- www.atozlives.com

Thanks,

“Play With All Computer Science , Mathematics  And Technology.”

 

 

40 COMMENTS

  1. Oh my benefits! a remarkable post man. Thank you Nonetheless I am experiencing problem with ur rss. Don?t know why Unable to subscribe to it. Exists any person obtaining similar rss trouble? Any individual that understands kindly react. Thnkx Lizette Sonny Goldenberg

  2. A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart. I am alone, and feel the charm of existence in this spot Pavla Mohandis Philipson

  3. I will immediately snatch your rss feed as I can not to find your email subscription link or newsletter service. Do you have any? Please allow me recognise so that I may just subscribe. Thanks. Harlie Leland Damalus

  4. The subsequent time I read a blog, I hope that it doesnt disappoint me as a lot as this one. I imply, I know it was my choice to read, but I really thought youd have one thing interesting to say. All I hear is a bunch of whining about something that you can fix in the event you werent too busy searching for attention. Prisca Ewan Macey

  5. Thank you a lot for giving everyone a very spectacular possiblity to read critical reviews from this site. It is usually so fantastic and as well , full of a lot of fun for me personally and my office colleagues to search your site at minimum three times a week to learn the newest stuff you have. And definitely, I am always astounded concerning the eye-popping hints you give. Some 2 tips on this page are honestly the best we have all ever had. Barrie Galven Mathis

  6. Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is magnificent, let alone the content!| Geri Buck Lipps

  7. I would like to point out my appreciation for your generosity for visitors who need help on this theme. Your very own dedication to getting the message across ended up being astonishingly informative and have always permitted women like me to realize their pursuits. The invaluable report signifies so much a person like me and much more to my office colleagues. Regards; from each one of us. Mary Ty Eliot

  8. I loved as much as you will receive carried out right here. The sketch is attractive, your authored material stylish. nonetheless, you command get bought an shakiness over that you wish be delivering the following. unwell unquestionably come further formerly again since exactly the same nearly very often inside case you shield this increase. Yelena Obed Gwenore

  9. You ave made some decent points there. I looked on the web for additional information about the issue and found most individuals will go along with your views on this web site. Marline Selby Bozovich

  10. Wow! This could be one particular of the most useful blogs We have ever arrive across on this subject. Actually Wonderful. I am also an expert in this topic therefore I can understand your hard work. Katrinka Rudiger Wildermuth

  11. I all the time used to study article in news papers but now as I am a user of internet so from now I am using net for content, thanks to web. Christa Gerrie Karame

  12. I have recently started a web site, the counsel you give upon this site has helped me greatly. Thank you for every of your become old and also work. Felicity Costa Gavette

  13. Nice blog here! Also your web site loads up very fast! What web host are you using? Can I get your affiliate link to your host? I wish my site loaded up as fast as yours lol| Aundrea Dale Gitt

LEAVE A REPLY

Please enter your comment!
Please enter your name here