gpt4 book ai didi

c++ - 具有 void 返回类型和模板化参数的 std::function

转载 作者:太空狗 更新时间:2023-10-29 20:37:30 24 4
gpt4 key购买 nike

我有一个

template<class R>
class MyClass
{
public:
typedef std::function<void (const R)> ...;
};

一切正常,直到我尝试使用 MyClass < void >。

在这种情况下,编译器将 typedef 扩展为

typedef std::function<void (void)> ...;

不想合作。

如果将 void 用作 R 参数,我希望 typedef 的行为如下:

typedef std::function<void ()> ...;

由于类非常大,我更喜欢 type_traits 和 enable_if 之类的东西,而不是为 void 创建特化。

最佳答案

如评论中所述,您可以使用辅助类:

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;
};

关于c++ - 具有 void 返回类型和模板化参数的 std::function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34483160/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com