Advertisements
Advertisements
Question
Differentiate between public and private modifiers for the members of a class.
Distinguish Between
Solution
- Private modifier: A class member declared to be private has its access limited to the class block only. By no means, a private member can be applied outside the class block.
- Public modifier: A class member that is declared to be public can be accessed inside as well as outside the class block. By default, a class member is declared to be public.
shaalaa.com
Is there an error in this question or solution?