1
Reply

Decrement a static variable of a class after an object it has been destroyed

Joshua

Joshua

Mar 11 2009 3:58 AM
2.1k
Hi,

Say I have a class Student which has a static field Count. I need to increment it whenever a new object of Student is created and decrement it whenever any object of Student is destroyed.

I know that increment can be done in the constructor but what about decrement, since there is no destructor.

Answers (1)