I am pondering about partial specialization. While I understand the idea, I haven't seen any real-world usage of this technique. Full specialization is used in many places in STL so I don't have a problem with that. Could you educate me about a real-world example where partial specialization is used? If the example is in STL that would be superior!
| |||||||||||
feedback
|
|
C++0x comes with If you use
Another use (although a very questionable) is
Yet another use is with
For pointers, that of course doesn't work. There is a partial specialization for them
| |||||||||||
feedback
|
|
In some stl implementations collections like Each instantiation of a template for a type T creates new code. However pointer types are effectively all the same so generating new code for every type is a waste. This can be reduced by implementing the private part of pointer collections with void pointers and then casting these to the appropriate type in the public interface. This greatly reduces the code generated for pointer collections. I think this is covered in Effective STL. | |||||
feedback
|
|
Taken from MSDN (Partial Specialization of Class Templates (C++))
| |||||||
feedback
|