What are the differences between public, private, and
protected access?
Answer Posted / it
Public is used for global access so its scope is not only
within the class but also outside the class. For example
public variables will be visible to all classes and any
class or member function can utilize those variables and
member functions.
Private is used only in the class in which it is defined.
It cannot be accessible by its derived members. So private
variables will be visible only to the class to which they
belong and it will not give access to any other classes.
Public and protected members will become private in derived
class.
Protected is used within the class in which it is defined
and derived members of it can also access it. So protected
variables will be visible only to the class to which they
belong and it gave access to its derived classes also.
| Is This Answer Correct ? | 17 Yes | 7 No |
Post New Answer View All Answers
What is object in c++ wikipedia?
What is setw manipulator in c++?
What is encapsulation in c++?
What is constructor in C++?
Does improper inheritance have a potential to wreck a project?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
When to use “const” reference arguments in a function?
Which field is used in c++?
Is it possible for a member function to delete the pointer, named this?
What is vector pair in c++?
What is tellg () in c++?
Is set c++?
How are the features of c++ different from c?
What are formatting flags in ios class?
What do you mean by funtion prototype?