home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH15 / A15107.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-11-01  |  312.3 KB  |  1 channel  |  11,025 sample rate  |  29 seconds
Transcription: Template functions are more robust than macros. The preprocessor directive, pound-define, can provide limited support for parameterized types. However, macro expansion can have undesirable side effects. In this example, the value assigned to i is wrong and the value of k or j is incremented twice. In addition, a macro does not check the type of its arguments. Template functions, on the other hand, check the types of their arguments. you