Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class A
  2. {
  3. public:
  4. static int Counter = 0;
  5. int a;
  6.  
  7. public:
  8. A()
  9. {
  10. a = 0;
  11. Counter++;
  12. }
  13. ~A()
  14. {
  15. Counter--;
  16. }
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement