if both base and derived class have the constructors if i
create an object for derive class which class constructor
is executed first
Answers were Sorted based on User's Feedback
Answer / suresh
Base class constructor called first next it wil call Derived
class constructor
| Is This Answer Correct ? | 37 Yes | 2 No |
Answer / sangeetha
"C++ classes honor their parents by calling their parents
constructor before they call their own." The base class
constructor will be called before the derived class
constructor. This makes sense because it guarantees that
the base class is properly constructed when the constructor
for the derived class is executed. This allows you to use
some of the data from the base class during construction of
the derived class.
| Is This Answer Correct ? | 25 Yes | 0 No |
Answer / prajeesh
#include <iostream>
using namespace std;
class BaseClass {
public:
BaseClass() { cout << "Constructing base portion\n"; }
~BaseClass() { cout << "Destructing base portion\n"; }
};
class DerivedClass: public BaseClass {
public:
DerivedClass() { cout << "Constructing derived
portion\n"; }
~DerivedClass() { cout << "Destructing derived
portion\n"; }
};
int main()
{
DerivedClass ob;
// do nothing but construct and destruct ob
return 0;
}
Constructing base portion
Constructing derived
Destructing derived
Destructing base portion
| Is This Answer Correct ? | 26 Yes | 1 No |
Answer / nathusingh
If both the base and derived class have constructors then
first of all constructor of the Base Class (Parent class)
will be invoked and then subsequently the constructor of
the derived class will be called.Whereas in case of
Destructors,destructor of the derived is called so as to
destroy the object child object and then base class
destructor is called. In Case of Creation ( constructors)
Parents(Base Class) are honored first while in case of
destruction (destrcutors) children( Derived class) are made
the victim :)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / harsha
First Constructor of base class will be invoked and then the
constructor of derived will be invoked ........
For example
Using System;
class Base
{
public Base()
{
Console.WriteLine("Base Class");
}
}
class Derived:Base
{
public Derived()
{
Console.WriteLine("Derived Class");
}
static void Main(string[] args)
{
Derived d=new Derived();
}
}
Output:
Base Class
Derived Class
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / nageswararao
Both Base and Derived class constructor Get invoked when
both base and derived has constructors and and we create an
object for derive class?
| Is This Answer Correct ? | 5 Yes | 11 No |
Answer / sachin moule
Base class constructor is get called first and later on
derived same will happen in case of destructor
| Is This Answer Correct ? | 2 Yes | 10 No |
Answer / amrit kumar singh
#include <iostream>
using namespace std;
class BaseClass {
public:
BaseClass() { cout << "Constructing base portion\n"; }
~BaseClass() { cout << "Destructing base portion\n"; }
};
class DerivedClass: public BaseClass {
public:
DerivedClass() { cout << "Constructing derived portion\n"; }
~DerivedClass() { cout << "Destructing derived portion\n"; }
};
int main()
{
DerivedClass ob;
// do nothing but construct and destruct ob
return 0;
}
output will be :-----------
Constructing base portion
Constructing derived
Destructing base portion
Destructing derived
| Is This Answer Correct ? | 9 Yes | 22 No |
Answer / dipa
It will show compilation error that "class type
redefination".
| Is This Answer Correct ? | 1 Yes | 31 No |
1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions
What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?
Tell me the different controls in MFC ?
In MFC By Using Communication Between Dialog Boxes,How Can We Send Message Of one Dialog Box To Another Dialog.?
3 Answers Financial Technologies,
What is mfc class hierarchy?
what do you mean by psychic window?
1)does Frame Thickness in MFC?
Explain in sort What is CTargetObject?
What is the difference between GetMessage and PeekMessage ?
What is the difference between the SDI and MDI
What is the difference between ASSERT and VERIFY?
what is the component of CLR ?