Advertisements
Advertisements
Question
What is the difference between the members present in the private visibility mode and the members present in the public visibility mode?
Solution
Members present in the private visibility mode:
- Can be accessed only by the class members.
- By default, the members will be in private visibility mode.
- When classes are inherited, private members are not inherited.
Members present in the public visibility mode:
- Can be accessed by outside members also.
- Members, to be in public visibility mode have to be specified explicitly.
- When classes are inherited, the public members are inherited as private, protected, and public members of the derived class.
APPEARS IN
RELATED QUESTIONS
What is the difference between public and private visibility modes?
Based on the following class declaration answer the question?
class vehicle
{ int wheels;
public:
void input_data(float,float);
void output_data();
protected:
int passenger;
};
class heavy_vehicle : protected vehicle {
int diesel_petrol;
protected:
int load;
public:
void read_data(float,float)
void write_data(); };
class bus: private heavy_vehicle {
char Ticket[20];
public:
void fetch_data(char);
void display_data(); };
The member function is inherited as public by Class Bus ______
Explain the different visibility modes through pictorial representation?
Consider the following c++ code and answer the question?
class Personal
{ int Class,Rno;
char Section;
protected:
char Name[20];
public:
personal();
void pentry();
void Pdisplay(); };
class Marks:private Personal
{ float M{5};
protected:
char Grade[5];
public: Marks();
void Mentry();
void Mdisplay(); };
class Result:public Marks
{
float Total,Agg;
public:
char FinalGrade, Commence[20];
Result();
void Rcalculate();
void Rdisplay();
};
Specify the visibility mode of base classes.