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 |
define a string class. overload the operator == to compare two strings
2 Answers Birla, Ericsson, HCL, Infosys, Infotech, MCAS, Satyam,
What is function overloading and operator overloading?
what is virtual function?
26 Answers Aspire, HP, Infosys, RoboSoft, TCS,
what is the size of an empty class
How is exception handling carried out in c++?
What is namespace?
What is an interface in oop?
What is destructor example?
How do you explain polymorphism?
what is virtual destructor
explain sub-type and sub class? atleast u have differ it into 4 points?
In multilevel inheritance constructors will be executed from the .... class to ... class