C ++模板和别名

问题描述 投票:3回答:1

这将在库中使用,而不是像示例一样,下面的示例使得它只是解释了问题。

我有一个模板类BaseType与模板专业化。

template<class...> 
class BaseType; //Forward declare

template<typename T>  
BaseType<T> { /* ...implementation 1... */ };

template<typename T, typename R>  
BaseType<T,R> { /* ...implementation 2... */ };

我现在将为shared_ptr<BaseType>模板创建一个别名。为其中一个模板版本执行此操作很好。

template<typename T>
using SlotType = std::shared_ptr<BaseType<T> >;

using EventArgSlot = SlotType<EventArgs>;

EventArgSlot slot1;

但是我应该如何定义别名,以便它也支持这个:

using MessageIntegerSlot = SlotType<MessageArgs, int>;
MessageIntegerSlot slot2;

只使用相同的附加模板参数添加其他别名不起作用:

template<typename T, typename R>
using SlotType = std::shared_ptr<BaseType<T,R> >;

这可以在C ++ 11/14中解决吗?

c++ c++11 templates c++14 alias
1个回答
6
投票

你可以利用parameter pack并将SlotType的定义更改为

template<typename... T>
using SlotType = std::shared_ptr<BaseType<T...> >;

然后

using EventArgSlot = SlotType<EventArgs>;              // use the 1st specialization of BaseType
using MessageIntegerSlot = SlotType<MessageArgs, int>; // use the 2nd specialization of BaseType
© www.soinside.com 2019 - 2024. All rights reserved.