How to make constructor in C++ PROGRAM
constructor in C PROGRAM, Cplusplus, what is constructor .
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;
}
0 comments:
Post a Comment