Question:
When is an object created and what is its lifetime?
January 01, 2006 07:12:29
#1
Sameeksha
Microsoft ExpertMember Since: October 2005 Total Comments: 231
RE: When is an object created and what is its lifetim...
An object is created when a class is instantiated. This is the time when memory is allocated to the object and the class constructor is called to initialize the data members.