Can destructor be overloaded?
Answer / Nripendra Misra
No, a destructor cannot be overloaded. A class can have only one destructor.
| Is This Answer Correct ? | 0 Yes | 0 No |
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
What is the real time example of encapsulation?
What does and I oop and sksksk mean?
What is polymorphism oop?
How to improve object oriented design skills?
What is a template?
What is polymorphism and why is it important?
What are the benefits of polymorphism?
What do you mean by inline function?