private
, protected
, public
.
So far, you have encountered private
and public
levels of access. You will encounter protected
in the next workbook.
private
– cannot be accessed outside the class.public
– accessible from everywhere.protected
– accessible to child classes. Favorprotected
overpublic
if only the child classes need access to a particular method.
Feedback Summary
4.7
43 students
5
91%
4
2%
3
0%
2
0%
1
7%
Written Reviews
There are no written reviews yet.