Solution:NIIT/GNIIT Sonugiri0032@gmail.com

Wednesday, January 06, 2016

How to make constructor in C++ PROGRAM

How to make constructor in C++ PROGRAM


Structure of the Problem Requirements

Constructors are used to initialize the objects when they created. A constructor could be overload many times as increasing its Parameters. Constructor has same name which is class name and it has no data types . If we doesn't create a constructor in any class then compiler create  a default constructor.

Source Code

#include<iostream>
using namespace std;

 class LEP
 {
  public:
   LEP();
   void set_name (string n);
   string get_name();
       private:
  string name;
 };
  LEP::LEP()
 {
  cout<<" \t \t \t  Hi Visitor ! \n \n ";
 }
 void LEP:: set_name(string n)
 {
  name = n;
 }
 string LEP::get_name()
 {
  return name;
 }
int main ()
{
 LEP L;
 L.set_name(" \t We Welcome You to www.ancodingpoint.com ! ");
 cout<<L.get_name();
 cout<<endl<<endl;
 }
Share:

0 comments:

GNIITSOLUTION GNIIT SOLUTION. Powered by Blogger.

Translate

Blog Archive

Unordered List