What are some uses of template template parameters?

后端 未结 10 1011
无人共我
无人共我 2020-11-22 03:41

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 do

10条回答
  •  感情败类
    2020-11-22 04:11

    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:

    // Library code
    template