When will a constructor executed?
Answers were Sorted based on User's Feedback
Answer / rahul
When an object create means suddenly construtor get executed
Is This Answer Correct ? | 22 Yes | 3 No |
Answer / preeti
Constructor execution is depend on its type like,
1) inbuilt or default construtor, no parameter constructor
are executes whenever object creates.
2) parameterized constructor execute whenever it calls.
3) base class constructor execute before than child class
constructor(child class is derived from base class
constructor).
Is This Answer Correct ? | 20 Yes | 1 No |
Answer / priya
Constructor gets called when we create an object,or when we
allocated memory using new operator:
void main()
{
test *t = new test;
delete t;
}
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / poorna chandar rao
when ever object is created automatically (conncurently
)construcor also executed
Is This Answer Correct ? | 6 Yes | 1 No |
What is object-oriented programming? Webopedia definition
what is an instance of a class
Whats oop mean?
What is polymorphism and why is it important?
What is virtual class and friend class?
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?
what is overloading and overriding?
Explain polymorphism? What r the types of polymorphism? pls give examples?
oops concept is used for?
What type of loop is a for loop?
Why is abstraction needed?
what is the application of oops?