Is there a trick to explicitely instantiate deep template classes?

孤者浪人 提交于 2020-01-25 04:16:20

问题


I have a problem:

I want to explicitely instantiate a class like Datatype in:

using Layout = some::namespaces::Meat_Layout<Some,Parameters>;
using Datatype = other::namespaces::Meta_Datatype<Layout>;

For explicit instantiation I need to use elaborated type specifiers. Which do not allow the usage of typedefs. Therefor I can not write:

template class Datatype;

But I have to write:

template class some::namespaces::Meta_Datatype<other::namespaces::Meat_Layout<Some,Parameters>>;

If there are any typedefs left in there I would have to replace them too, wich might lead to something like:

template class some::namespaces::Meta_Datatype<other::namespaces::Meta_Meat_Layout<Some,Meta_Parameters<int>,int,int>>;

As you see this becomes really fast unclear.

Is there any trick to avoid the deconstruction of all the typedefs?

It would be best if it is also possible to use the trick when using extern template.


回答1:


You don't have to deconstruct all typedefs. Those used as template parameters can be left as is:

using Layout = some::namespaces::Meat_Layout<Some,Parameters>;
using Datatype = other::namespaces::Meta_Datatype<Layout>;

template class other::namespaces::Meta_Datatype<Layout>;



回答2:


Actually, you don't need to deconstruct all the typedefs. It's true that you cannot use typedef as explicitely instantiated template, but you can use typedefs as parameters of your template, like Evg said earlier.

As you already mentioned:

14.7.2 Explicit instantiation [temp.explicit]: If the explicit instantiation is for a class or member class, the elaborated-type-specifier in the declaration shall include a simple-template-id.

But any limitations on template arguments are not mentioned in the standard, so you freely can use any arguments in the explicit instantiation, including the typedefs.



来源:https://stackoverflow.com/questions/58745481/is-there-a-trick-to-explicitely-instantiate-deep-template-classes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!