+1 vote
in C Plus Plus by

What are C++ access specifiers ?

1 Answer

0 votes
by

ccess specifiers are used to define how the members (functions and variables) can be accessed outside the class.

  • Private: Members declared as private are accessible only within the same class and they cannot be accessed outside the class they are declared. Child classes are also not allowed to access private members of parent.
  • Public: Members declared as public are accessible from anywhere.
  • Protected: Only the class and its child classes can access protected members.

Related questions

+1 vote
+1 vote
0 votes
asked Jun 11, 2020 in C Plus Plus by Robindeniel
+1 vote
+1 vote
+1 vote
asked Jul 16, 2019 in C Plus Plus by Indian
...