Implement a destructor : Destructor « Class « C++






Implement a destructor

Implement a destructor
 


#include <iostream>
using namespace std;

class prompt {
  int count;
public:
  prompt(char *s) { 
     cout << s; cin >> count; 
  };
  ~prompt();
};

prompt::~prompt() {
  int i, j;
     
  for(i = 0; i <count; i++) {
    cout << '\a';
    for(j=0; j<32000; j++) 
       ; // delay
  }
}

int main()
{
  prompt ob("Enter a number: ");

  return 0;
}

           
         
  








Related examples in the same category

1.Constructing and Destructing sequence for two base classesConstructing and Destructing sequence for two base classes
2.Derived class call its base constructorDerived class call its base constructor
3.Derived constructor uses no parametersDerived constructor uses no parameters
4.Define and use the destructorDefine and use the destructor
5.System will call the destructorSystem will call the destructor
6.Using a constructor and destructor.Using a constructor and destructor.
7.Define destrcuctor outside the class definition