Private properties and functions can be accessed or modified only in the class body.
Public members can be accessed or modified anywhere - class body, main function, other function.
It can be understood via the following code:
Output:
There are a couple of things to notice about the
private property id and the public properties name
and age:
lines 13 and 14,
for private properties - line 15.
Person class body (like the main function) only public
properties can be accessed/modified - lines 24 and 25.
line 26 the code will not compile. Because
a private member (id in this case) cannot be accessed/modified outside
the Person class body.