InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference In Attributes Defined In The Public Versus Private Section Of A Class? |
|
Answer» PUBLIC attributes can be ACCESSED by class, subclasses and other classes where as PRIVATE attributes can be accessed by class itself only. Public attributes can be accessed by class, subclasses and other classes where as Private attributes can be accessed by class itself only. |
|