We all know the usual use of templates to design containers and we all know that you can do things with templates that will make your head spin.

When I first encoutered static polymorphism I was really struck on what you can do with templates. It's obvious that templates are useful for more than for designing containers. I bought Andrei's "Modern C+ Design" but sadly haven't yet found the time or concentration to read it but I'm sure it offers a wealth of brilliant uses of templates.

IMHO this is also a very clever use of templates.

What's the most ingenious use of templates you've ever encountered?

link|improve this question

3  
Perhaps you should read the book rather than ask questions like this? – anon Apr 26 '09 at 8:41
Reading the linked articles from the first two answers already made me smile with technolust. Thanks for this question! – David Schmitt Apr 26 '09 at 9:25
feedback

6 Answers

up vote 5 down vote accepted

boost's Spirit meta programming for creating a parser's grammar.

link|improve this answer
I'm also very fascinated by boost::Spirit – Wolfgang Plaschg Dec 26 '09 at 15:27
feedback

Compile time assert using template specialization. I think it is so simple yet so beautiful use of templates.

link|improve this answer
feedback

Alexandrescu's work on templates is fascinating. The Loki library amply demonstrates the magic he can weave with templates.

link|improve this answer
feedback

I rather like Microsoft's "smart pointers" that make elaborate use of templates to make COM less of a pig and code much more readable.

link|improve this answer
feedback

I don't remember the lib name, but the idea was to use templated types parameterized by integers in order to enforce consistency when doing consistency when performing computation among physical quantities. The concept is very simple, take a templated type that simply embeds a double precision float. Parameterized with three integers, one for mass, one for distance, one for time. For example a velocity is distance parameter = 1 and time parameter = -1. An acceleration is distance parameter = 1, time parameter = -2. And then overload all operators, so that you can only add/subtract types with the same parameters, and the you sum the parameters when doing a product. So if velocity is Type<1,-1,0> and time is Type<0,1,0>, then velocity x time is Type<1+0,1+-1,0+0>, so velocity*time -> distance.

Not only it is smart but it is one of the very few examples of a good use of templates with parameters other than typename

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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