Can we declare destructor as static? Explain?

Answers were Sorted based on User's Feedback



Can we declare destructor as static? Explain?..

Answer / murali

Yes we can. But you can't use it.

Use new to create the object.
At the same time you can't use delete.

Why can't : As destuctor uses 'this' context and in this
case it can't being static.

Is This Answer Correct ?    8 Yes 2 No

Can we declare destructor as static? Explain?..

Answer / jaroosh

To sum up : you CANT declare destructor as static, as you
CANT declare constructor as static, both are responsible for
destroying and creating OBJECTS while static storage means
that methods/members do not belong to any objects but to the
whole class.

Is This Answer Correct ?    7 Yes 1 No

Can we declare destructor as static? Explain?..

Answer / sunil

declaring destructor and constructor as static is a syntax error

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;

4 Answers   Lehman Brothers,


Is rust better than c++?

0 Answers  


What do you mean by “this” pointer?

0 Answers  


When we use Abstract Class and when we use Interface?where we will implement in real time?

0 Answers  


Specify some guidelines that should be followed while overloading operators?

0 Answers  


What is helper in c++?

0 Answers  


What do you mean by Stack unwinding?

1 Answers  


What do you mean by global variables?

0 Answers  


How much is size of struct having 1 char & 1 integer?

11 Answers   Persistent,


What is the best it certification?

0 Answers  


Can you be bale to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?

0 Answers  


What can I safely assume about the initial values of variables which are not explicitly initialized?

0 Answers  


Categories