what is the difference
Web Development
2
Posts
2
Posters
0
Views
1
Watching
-
what is the difference between procedures like---> sub ish() public sub ish() private sub ish() protected sub ish() ----> please diffenentiate in details... assume that i don't know c/c++;P
Ish Kumar Kapila
-
what is the difference between procedures like---> sub ish() public sub ish() private sub ish() protected sub ish() ----> please diffenentiate in details... assume that i don't know c/c++;P
Ish Kumar Kapila
In C++, public, private and protected access to fields and methods come into play during inheritance. Public: Everyone has access. Protected: Only parent and descendant children have access. Private: Only the parent has access.