Monday, May 30, 2011

How to find number of objects in a class...?


public class LikeThis
{

private static int numberOfObjectsCreated = 0;

public LikeThis()
{

numberOfObjectsCreated++;           // other constructor business
}
}