Templates occur at compile-time. Inheritance occurs at run-time. You can catch errors with templates at compile-time that you would have to unit-test inheritance for (and then hope you don't miss them). In addition, templates are cleaner and smoother than inheritance.
Consider the simple case of, in Java, List. When you have a List which is only supposed to contain, I dunno, Customers, but if in reality it holds a bunch of Object references, you can't guarantee that it doesn't contain a bunch of Animals or DatabaseConnections, and when you get it back, you have to cast and it can throw. Generics guarantee the correct result, no casts necessary. If you write a bug trying to insert something here that doesn't belong, your compiler will throw a fit. This level of security is far above what polymorphism can offer.
In addition, templates (in C++) can accept arguments other than types, like integral types, can perform compile-time type introspection, and that sort of thing. What's possible with templates is massively greater than what's possible with inheritance, and it's much safer and faster, too.
Finally, with templates, you don't have to explicitly inherit. Do I have to inherit from Addable if I want to offer operator+? No, the template will pick it up automatically. This is more maintainable than having to explicitly specify every functionality I can inherit, as when a new library comes along, I will not have to change my code to inherit from their Addable interface. In C++, I don't have to inherit from a Callable interface to allow the use of boost::function, even if it was developed after my function object was written. Java could never do that with inheritance. How could you even develop a class that can deal with variable numbers of arguments without generics? Write a Callable1, Callable2, Callable3 interface?
Consider another simple example. Let's say I want to add two objects together, and then subtract the result with a final object. If you have an IAddable interface, how could you possibly specify that the result of the addition operation is subtractable? And subtractable with what- I sure hope that's not another paramter? You'd basically have to write a new interface for every complex use case. Templates, on the other hand, maintain their type information all the way through, so if I'm performing more than a couple of operations, the results don't lose their information.
These are basically the same arguments as static and dynamic typing, effectively, where templates are static and inheritance is dynamic. Static types are significantly faster and less error-prone than dynamic types.
std::vector? – Luc Danton Jul 25 '11 at 8:43addmethod of aVectorwould need to accept any subclass ofObject). This kind of parametrization is even more important in C++, where there is no 'root class' (likeObjectin java). – Rom1 Jul 25 '11 at 8:49