gpt4 book ai didi

c++ - 如何确定模板中函数的返回类型

转载 作者:行者123 更新时间:2023-12-02 16:00:11 26 4
gpt4 key购买 nike

我正在尝试编写一个类似于 std::function 的类,只是为了了解它是如何工作的,但我在确定函数的返回类型时遇到了问题。

我找到了 this来自堆栈溢出的答案之一。我正在尝试做类似的事情,但它不起作用,我不知道为什么。

template< class Fx >
class function
{
public:
function() = default;

function(Fx* fx)
{
this->fx = fx;
}

template < class... A >
ReturnType operator()(A... args)
{
//return ((*fx)(args), ...); ??
}

private:
template<class F>
struct return_type;

template< class R, class... A>
struct return_type<R(*)(A...)>
{
using type = R;
};

using ReturnType = return_type<Fx>::type;
Fx* fx;
};


int sum(int a, int b) { return a + b; };

int main()
{
function<int(int, int)> mysum{ sum };
mysum(10, 10);
}

在线报错

using ReturnType = return_type<Fx>::type;

不允许使用不完整的类型。为什么不选择专业的?

最佳答案

Fx应该是函数类型,而不是函数指针类型,所以特化应该声明为:

template< class R, class... A>
struct return_type<R(A...)>
{
using type = R;
};

其他问题:

  1. 更改 using ReturnType = return_type<Fx>::type;using ReturnType = typename return_type<Fx>::type; .

  2. 移动ReturnType的声明(和 return_type 的定义)在将其用作 operator() 的返回类型之前.

  3. 更改 return ((*fx)(args), ...);return (*fx)(args...);operator() ;即所有参数都应该传递给 fx而不是调用 fx每个参数多次。

LIVE

顺便说一句:Return type deduction (C++14 起)也值得考虑。例如

template < class... A >
auto operator()(A... args)
{
return (*fx)(args...);
}

LIVE

关于c++ - 如何确定模板中函数的返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70883061/

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