why destructor is not over loaded?

Answers were Sorted based on User's Feedback



why destructor is not over loaded?..

Answer / ramakant

Normally (in fact almost always) you never explicitly call
the destructor, it is automatically called by the C++ frame
work when the object is deleted/goes out of scope.
Therefore you would not need to overload the destructor
because the frame work always calls the default destructor.

Additionally the C++ standard defines that a conforming
compiler only allows for 1 destructor per class.

Is This Answer Correct ?    21 Yes 2 No

why destructor is not over loaded?..

Answer / test

Destructor is not over loaded because OOP you can't Invoke a
call of the destructor (Dispose is another thing)

Is This Answer Correct ?    12 Yes 3 No

why destructor is not over loaded?..

Answer / varun

Normally you never explicitly call
the destructor, it is automatically called by the C++ frame
work when the object is deleted/goes out of scope.
Therefore you would not need to overload the destructor
because the frame work always calls the default destructor.

Additionally the C++ standard defines that a conforming
compiler only allows for 1 destructor per class.

Is This Answer Correct ?    5 Yes 1 No

why destructor is not over loaded?..

Answer / gyana

In c# we cannot over load the desructor as because
destructor is presented by defaultly in c# and we cannot
create any object of it.we cannot also define a new
desructor.It cannot be explicitly used.for this reason we
cannot invoke the desructor and it cannot be overloaded..

Is This Answer Correct ?    3 Yes 1 No

why destructor is not over loaded?..

Answer / m.salah

destructor not overloaded because not has parameters

Is This Answer Correct ?    9 Yes 12 No

Post New Answer

More OOPS Interview Questions

write a program to print * * * * * *

2 Answers  


What do you mean by variable?

0 Answers  


difference between class and object

10 Answers   Chandan, IBM, Magic Soft,


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

0 Answers  


officer say me - i am offered to a smoking , then what can you say

0 Answers  






What are properties in oop?

0 Answers  


What is a function in oop?

0 Answers  


what is virtual function?

26 Answers   Aspire, HP, Infosys, RoboSoft, TCS,


Describe the difference between a Thread and a Process?

11 Answers   Siebel Systems,


When is an object created and what is its lifetime?

4 Answers   IBM,


Write a program to reverse a string using recursive function?

0 Answers   TCS,


What is the expansion of OOPS?

24 Answers   TCS,


Categories