vote up 8 vote down star
5

I am learning templates, which book should be worth buying for doing template programming. Already have The c++ programming language and Effective c++.

flag

7 Answers

vote up 14 vote down check

Those two books are pretty good in my opinion and they helped me a lot

  • C++ Templates: The Complete Guide by David Vandevoorde and Nicolai M. Josuttis
  • Modern C++ Design by Andrei Alexandrescu

The first one explains how templates work. The second book is more about how to use them. I recommend you to read the first book before starting with Modern C++ Design because that's heavy stuff.

link|flag
vote up -1 vote down

Effective STL by Scott Meyers

link|flag
vote up 1 vote down

There is a hidden treasure in C++ Templates that very few people are aware of: C++ Common Knowledge: Essential Intermediate Programming . Last 15 chapters of that book both teaches better and complemenets C++ Template Metaprogramming in some respects. I strongly recommend anyone who is to learn templates to read this book foremost.

link|flag
got nice review from amazon – yesraaj Feb 5 at 14:27
vote up 0 vote down

"C++ Templates: The Complete Guide (Vandevoorde & Josuttis)" is excellent for the theory. Then you can learn even more about actual templating practice by looking at how templates are used in the boost library.

link|flag
vote up 3 vote down

Both Modern c++ design and C++ Template Metaprogramming are very good (and quite advanced) books on the subject. I have a strong personal preference for the first.

link|flag
vote up 1 vote down

C++ Templates: The Complete Guide is your best bet. You could also learn about the Standard Library which heavily uses templates.

link|flag
vote up 6 vote down

Maybe a bit mind-boggling if you are just learning, but after the books you mention, you may want to read Andrei Alexandrescu's Modern C++ Design, if only to learn what can be accomplished through templates. Besides, it discusses many advanced aspects of templates wonderfully.

link|flag
Modern C++ is crazy, but it's the best. – Robert Gould Feb 5 at 8:27
I've read it twice so far. Each time a little more sticks in my brain. I guess it's time for a third reading ;-) – Ferruccio Feb 5 at 12:10
Thanks for fixing the typo, Ferruccio. – Gorpik Feb 5 at 14:23

Your Answer

Get an OpenID
or

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