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 copy constructor? Can we make copy constructor private in c++?
How would you differentiate between a pre and post increment operators while overloading?
What causes a runtime error c++?
What is the advantage of c++ over c?
Describe exception handling concept with an example?
Why do we use vector in c++?
When do we run a shell in the unix system? How will you tell which shell you are running?
Differentiate between a template class and class template in c++?
How can I learn c++ easily?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is the meaning of c++?
What does it mean to declare a member function as static?
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
Does dev c++ support c++ 11?
What is the c++ programming language used for?