Can we declare destructor as static? Explain?
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / sunil
declaring destructor and constructor as static is a syntax error
Is This Answer Correct ? | 2 Yes | 0 No |
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;
Is rust better than c++?
What do you mean by “this” pointer?
When we use Abstract Class and when we use Interface?where we will implement in real time?
Specify some guidelines that should be followed while overloading operators?
What is helper in c++?
What do you mean by Stack unwinding?
What do you mean by global variables?
How much is size of struct having 1 char & 1 integer?
What is the best it certification?
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?
What can I safely assume about the initial values of variables which are not explicitly initialized?