Write 7 differences between "Public" function and
"Private" function?
Answer Posted / shankar
1. Public Functions are available to any member of the
class and Object of the class, while private functions are
available to member functions of the same class.
2. Public functions can be inherited, but private can't.
3. By making function Private we implement encapsulation,
but with public method we don't.
4 Private functions are not available in interfaces.
Interfaces only contains Public methods.
5. Private Method though it declare Static will not be
available By using Class Name.
7. Private functions can never be declared as abstract but
Public functions can be.
6. Public functions are defined using 'Public' keyword and
Private functions are defined using 'Private' keyword.
| Is This Answer Correct ? | 52 Yes | 2 No |
Post New Answer View All Answers
What is static in oop?
How do you define social class?
what's the basic's in dot net
Is oop better than procedural?
How do you achieve polymorphism?
Whats oop mean?
What is static modifier?
What does and I oop mean?
What is polymorphism and why is it important?
What is difference between pop and oop?
Why is destructor used?
What is solid in oops?
What is oops?what is its use in software engineering?
Why do we use class?
Why do we need oop?