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
When not to use object oriented programming?
What is polymorphism and why is it important?
What does and I oop mean in text?
2. Give the different notations for the class.\
c++ program to swap the objects of two different classes
What is a function in oop?
Why is polymorphism used?
What is difference between data abstraction and encapsulation?
can inline function declare in private part of class?
What is the difference between inheritance and polymorphism?
What is use of overloading?
Whats is abstraction in oops?
What is object in oop?
What is difference between multiple inheritance and multilevel inheritance?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).