+ 3
Difference - private & protected class members
what r the differences between private class and protected class ...
2 Answers
+ 9
Private objects can be accessed only by that class.
Protected objects can be accessed by that class and it's derived classes.
+ 2
thanks :)