vote up 3 vote down star
1

I saw Scott Meyers' "Effective C++" third edition book having a small section on "Template Programming".

Any other book/links containing information on "effective" usage of templates ?

flag

6 Answers

vote up 2 vote down

I quite like C++ Template Metaprogramming by Abrahams and Gurtovoy.

link|flag
vote up 10 vote down

I like Modern C++ Design: Generic Programming and Design Patterns Applied. I found it very well written and clear. Contains a few advanced topics.

alt text

link|flag
vote up 8 vote down

Vandevoorde / Josuttis 'C++ Templates the Complete Guide' is very accessible.

link|flag
vote up 4 vote down

C++ Templates - The Complete Guide. Alexandrescu's Modern C++ Design is very good, but I wouldn't recommend it unless you're already familiar with templates. It's also geared more to C++ Framework creators.

link|flag
vote up 1 vote down

Scott Meyers deals with the Standard Template Library in Effective STL. That may be relevant for you.

link|flag
vote up 1 vote down

A rarely mentioned but solid book is C++ Common Knowledge by Stephen C. Dewhurst. "Among the first users of C++ at Bell Labs", Dewhurst gives the book a somewhat deceptive title because he actually covers quite a bit of advanced material in particular in regards to templates.

Dewhurst's book is organized similarly to Meyers's with 63 "Items" that you can usefully read on their own. On templates you should look over items 45-59 (about 70 pages of reading).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.