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 / 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 |
why in java first invoke public static void main(String args[]) method????Why not public static void method1(String args[])??
What is class and example?
what is new operator in c++
Why is static class not inherited?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
Have you ever used threads?
How do you define a class in oop?
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?
Explain virtual inheritance?
What is a macro? And how is a macro same as a template?
What are benefits of oop?
What is cohesion in oop?