Advertisement
mario_mos

destrucconstru

Aug 29th, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. #ifndef MACLASSE4_H
  2. #define MACLASSE4_H
  3.  
  4.  
  5. class Maclasse4
  6. {
  7. public:
  8.     Maclasse4();
  9.     ~Maclasse4();
  10.  
  11.  
  12. private:
  13.     int m_entier;
  14.  
  15. };
  16.  
  17. #endif // MACLASSE4_H
  18.  
  19. #include "maclasse4.h"
  20.  
  21. Maclasse4::Maclasse4()
  22. {
  23.    std::cout << "je suis le constructeur" << std::endl;
  24. }
  25.  
  26. Maclasse4::~Maclasse4()
  27. {
  28.    std::cout << "je suis le destructeur" << std::endl;
  29. }
  30.  
  31.  
  32.  
  33.  
  34. #include <iostream>
  35. #include "maclasse4.h"
  36. #include "maclasse4.cpp"
  37. using namespace std;
  38.  
  39. int main()
  40. {
  41.   Maclasse4 a;
  42.  
  43.  
  44.  
  45.  
  46.  
  47.     return 0;
  48. }
  49.  
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement