home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH17 / A17173.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-11-04  |  382.9 KB  |  1 channel  |  11,025 sample rate  |  35 seconds
Transcription: This is the function declaration for the class constructor. Notice that the function takes a single argument, capacity. Capacity is the maximum number of elements that can be stored in the array. The default capacity is 10. An initializer list is used to set the initial state of the object. Size is initialized to zero, free to zero, and P array to null. The constructor attempts to allocate an array of type T. An exception is thrown if the memory allocation fails. Otherwise, capacity is assigned to size and free.