C++ Template Metaprogramming - Is it possible to output the generated code?

前端 未结 5 1981
臣服心动
臣服心动 2020-12-01 07:58

I would like to debug some templated code to understand it better.
Unfortunately I\'m new to template metaprogramming and it IS hard for me to get in.

When I try

5条回答
  •  萌比男神i
    2020-12-01 08:33

    Nope, in general, it can't be done. Templates are simply part of the C++ language, they're not a separate preprocessor, so they don't generate C++ code.

    The usual solution is to sprinkle your code with static asserts and other tests to verify that the right templates get instantiated in the right ways.

    Once you start getting lost in your metaprogramming, this simple trick can help you determine which type a template parameter really is:

    // given a variable t of an unknown type T
    int*** i = t;
    

    When the compiler encounters this, it'll print out a nice and simple error message, "Can not convert to int***", allowing you to easily verify that the template parameter T is actually the type you think it should be.

提交回复
热议问题