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?
closed as not constructive by 0x499602D2, gnat, sgar91, Steven Penny, Graviton Mar 11 at 3:57
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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, 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:
|
|||||
|
|
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:
|
|||
|
|
|
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). |
|||
|
|
|
Actually, usecase for template template parameters is rather obvious. Once you learn that C++ stdlib has gaping hole of not defining stream output operators for standard container types, you would proceed to write something like:
Then you'd figure out that code for vector is just the same, for forward_list is the same, actually, even for multitude of map types it's still just the same. Those template classes don't have anything in common except for meta-interface/protocol, and using template template parameter allows to capture the commonality in all of them. Before proceeding to write a template though, it's worth to check a reference to recall that sequence containers accept 2 template arguments - for value type and allocator. While allocator is defaulted, we still should account for its existence in our template operator<<:
Voila, that will work automagically for all present and future sequence containers adhering to the standard protocol. To add maps to the mix, it would take a peek at reference to note that they accept 4 template params, so we'd need another version of the operator<< above with 4-arg template template param. We'd also see that std:pair tries to be rendered with 2-arg operator<< for sequence types we defined previously, so we would provide a specialization just for std::pair. Btw, with C+11 which allows variadic templates (and thus should allow variadic template template args), it would be possible to have single operator<< to rule them all. |
|||
|
|
Old question, but here's an answer anyway. I just worked this one out now. Say you're using CRTP to provide an "interface" for a set of child templates; and both the parent and the child are parametric in other template argument(s):
Note the duplication of 'int', which is actually the same type parameter specified to both templates. You can use a template template for DERIVED to avoid this duplication:
Note that you are eliminating directly providing the other template parameter(s) to the derived template; the "interface" still receives them. This also lets you build up typedefs in the "interface" that depend on the type parameters, which will be accessible from the derived template. EDIT: The above typedef doesn't work because you can't typedef to an unspecified template. This works, however (and C++11 has native support for template typedefs):
You need one derived_interface_type for each instantiation of the derived template unfortunately, unless there's another trick I haven't learned yet. |
||||
|
|