home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH08 / A08127.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-10-22  |  293.7 KB  |  1 channel  |  11,025 sample rate  |  27 seconds
Transcription: Containers are excellent candidates for code reuse. You can use the C++ template feature to write or reuse container classes that have a generalized form. Here is the definition of a template for the class AList. The class T represents a type not yet specified. At compile time, a defined type such as int or phonem is substituted for the parameterized type T.