I want to limit the number of instances of a class and I do not want to do that using a static count because of some of drawbacks of using static variable like thread saftey and others mentioned in following post: Why are static variables considered evil?.
Is their any way I can do this?