When you declare an instance of a template class, the compiler generates a copy of the class specialized to whatever you pass in the template parameters. For instance, std::vector takes a type name (here I used int). So in the example I gave, the compiler generates a specialisation of the std::vector class which can work on ints. The C++ Standard Library, a.k.a. the Standard Template Library, uses templates a lot.
WOW I have to take a look at it! I had a hard time using my blist_t class for binary lists which saved data as void. So many typecasts, and now, if I used templates.... ;D WOW.
Templates are one of the best features of C++. I've been hacking in C# recently, which lacks templates, and it's a real pain casting from System.Object (aka void*) all the time.
gets a copy in the output file for each type it is used, fe. ints, chars, shorts etc. Though, if I write a kernel in C++ I already have huge code.. perhaps it won't be a big difference? ::)
Yes, there is this possibility. You usually use templates for small classes that you don't mind being duplicated for each set of parameters. The compiler helps by only generating the functions you actually use.