我有一个
template<class R>
class MyClass
{
public:
typedef std::function<void (const R)> ...;
};
一切正常,直到我尝试使用MyClass&lt;无效&gt;。
在这种情况下,编译器将typedef扩展为
typedef std::function<void (void)> ...;
并且不想合作。
如果将void用作R参数,我希望typedef的行为类似于:
typedef std::function<void ()> ...;
由于类非常大,我更喜欢type_traits和类似enable_if的东西,而不是为void创建专门化。
答案 0 :(得分:5)
如评论中所述,您可以使用帮助程序类:
template<class R>
struct MyClassHelper
{
using function_type = std::function<void (const R)>;
};
template <>
struct MyClassHelper<void>
{
using function_type = std::function<void ()>;
};
然后,在MyClass
template<class R>
class MyClass
{
public:
using function_type = typename MyClassHelper<R>::function_type;
};