I've seen some examples of C++ using template template parameters (that is templates which take templates as parameters) to do policy-based class design. What other uses does this technique have?
|
feedback
|
|
I think you need to use template template syntax to pass a param whose type is a template dependant on another template like this:
Here, H is a type which is templated, but I wanted this function to deal with all specializations of H. NOTE: I've been programming c++ for many years and have only needed this once, I find that it is a rarely needed feature (of course handy when you need it!). EDIT: I've been trying to think of good examples, and to be honest, most of the time this isn't neccessary, but let's contrive an example. Let's pretend that
This actually doesn't work with Finally, here's a version which does work with
which you can use like this:
| ||||
feedback
|
|
Here is a simple example taken from 'Modern C++ Design - Generic Programming and Design Patterns Applied' by Andrei Alexandrescu: He uses a classes with template template parameters in order to implement the policy pattern:
He explains: Typically, the host class already knows, or can easily deduce, the template argument of the policy class. In the example above, WidgetManager always manages objects of type Widget, so requiring the user to specify Widget again in the instantiation of CreationPolicy is redundant and potentially dangerous.In this case, library code can use template template parameters for specifying policies. The effect is that the client code can use 'WidgetManager' in a more elegant way:
Instead of the more cumbersome, and error prone way that a definition lacking template template arguments would have required:
| |||
|
feedback
|
|
Here's another practical example from my CUDA Convolutional neural network library. I have the following class template:
which is actually implements n-dimensional matrices manipulation. There's also a child class template:
which implements the same functionality but in GPU. Both templates can work with all basic types, like float, double, int, etc And I also have a class template (simplified):
The reason here to have template template syntax is because I can declare implementation of the class
which will have both weights and inputs of type float and on GPU, but connection_matrix will always be int, either on CPU (by specifying TT = Tensor) or on GPU (by specifying TT=TensorGPU). | |||
|
feedback
|