Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

closed as not constructive by Smi, Aziz Shaikh, Shree, Rob, brimborium Nov 7 '12 at 8:01

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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).

share|improve this answer

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