Ramalingeswara Rao K V, Founder, NIRAM.
Pages
Home
eBooks
A Mirror
Contact
Showing posts with label
Constructor
.
Show all posts
Showing posts with label
Constructor
.
Show all posts
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
}
}
Older Posts
Home