In multiple inheritance , to create sub class object , is
there need to create objects for its superclasses???
in java and c++ both. Actually i have some information that
is , all available members from its superclasses , memory
created in subclass obj , so no need to create object for
its superclasses...???
Thanks in Advance
Answer Posted / abhishek
Hi,
There is no need to create an object of the base class, if you want to create an object of the derived class. It is automatically created internally. When you create an object of the derived class then, the constructor of the base class is called first and then the constructor of the derived class. Hence, depending upon the scope specified by access specifiers, we can directly the use the members of the Base class using the object of the Derived class.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism in oops with example?
How do you explain polymorphism?
Why do we need polymorphism in c#?
What is inheritance write a program to show use of inheritance?
What is overriding vs overloading?
What is the difference between abstraction and polymorphism?
Why is polymorphism used?
Is html an oop?
What is the problem with multiple inheritance?
What is difference between abstraction and encapsulation?
What is abstract class in oops?
Why do pointers exist?
Why do we use polymorphism in oops?
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is this pointer in oop?