What is calling outside of the class? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is calling outside of the class?

public private protected internal etc.

9th Mar 2017, 1:35 PM
Babagana Kachalla
Babagana Kachalla - avatar
1 Answer
+ 9
Public properties can be called from, or accessed outside of the class. Private ones can only be called from within the class explicitly. Protected properties can be accessed by child classes of the parent, and will not be accessed publicly.
9th Mar 2017, 4:26 PM
Mark Foxx
Mark Foxx - avatar