How to use typelists

前端 未结 2 1556
花落未央
花落未央 2020-12-05 12:02

I read about typelists in \'Modern C++ Design\' and I understood it as some kind of union for types. By putting diffrent, non-related types in a typelist, one can use it to

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-05 12:41

    The typelists are generic compile-time collections of types. If you use dynamic_cast, you are missing the point, because it should not be needed, because it is a static, compile time concept.

    This works but I don't see the advantage over inheritance which is capable to do the same.

    You cannot make any existing type inherit from anything you want. This is simply not feasible, because this existing type may be a built in type or a type from a library. Think of the typelists as extensions of lists of types (e.g. in std::pair) for any reasonable number of types (instead of just 2).

    The typelists can be used to create a facility to pass around a set of arguments to a function. This is a piece of code that calls generalized functors of 5 parameters (another concept from Modern C++ design) with the arguments supplied in a tupe (yet another one) with the typelist that defines types of objects held in the tuple:

    //functor is just a holder of a pointer to method and a pointer to object to call this 
    //method on; (in case you are unfamiliar with a concept)
    template
    R call(Loki::Functor func,
        Loki::Tuple tuple)
    {
        ///note how you access fields
        return func(Loki::Field<0>(tuple), Loki::Field<1>(tuple),
            Loki::Field<2>(tuple), Loki::Field<3>(tuple),
            Loki::Field<4>(tuple));
    }
    
    //this uses the example code
    #include
    using namespace std;
    
    int foo(ostream* c,int h,float z, string s,int g)
    {
        (*c)< f=foo;
        //(...)
        //pass functor f around
        //(...)
        //create a set of arguments
        Loki::Tuple tu;
        Field<0>(tu)=&cout;
        Field<1>(tu)=5;
        Field<2>(tu)=0.9;
        Field<3>(tu)=string("blahblah");
        Field<4>(tu)=77;
        //(...)
        //pass tuple tu around, possibly save it in a data structure or make many 
        //specialized copies of it, or just create a memento of a call, such that 
        //you can make "undo" in your application; note that without the typelist 
        //you would need to create a struct type to store any set of arguments;
        //(...)
        //call functor f with the tuple tu
        call(f,tu);
    }
    

    Note that only with other concepts like tuples or functors the typelists start to be useful. Also, I have been experiencing Loki for about 2 years in a project and because of the template code (a lot of it) the sizes of executables in DEBUG versions tend to be BIG (my record was 35 MB or so). Also there was a bit of hit on the speed of compilation. Also recall that C++0x is probably going to include some equivalent mechanism. Conclusion: try not to use typelists if you don't have to.

提交回复
热议问题