获取函数的参数数量和返回值类型demo

本文介绍了如何在C++中利用模板和decltype获取函数的返回值类型和参数数量。通过声明未实现的模板函数,可以推断出函数的返回值类型,而sizeof...操作符则用于计算参数的数量。示例代码展示了如何应用于普通函数和类成员函数,以及实际应用场景。
摘要由CSDN通过智能技术生成

获取函数的参数数量和返回值类型

有的时候,我们由于某一些特殊的需求,希望获取一个函数的返回值类型,或者是参数数量,可以借助模板来实现。假如我们有一个函数

int f(double, float) {
    return 1;
}

返回值类型

当我们需要获取返回值类型的时候,我们首先声明一个模板函数。

template <class R, class... Args>
R getRetValue(R(*)(Args...));

上面R(*)(Args...)定义了一个函数指针。

或者

template <class R, class... Args>
R getRetValue(R(Args...));

这个函数不需要被实现,因为我们只是想得到它的返回值类型,并不是真的调用这个函数,此时我们可以通过以下一句话获取函数类型

using ret_t = decltype(getRetValue(f));

decltype是根据进数返回值进行类型推断的,只需要拿到函数声明即可,并不在乎这个函数是不是真的被定义了。当函数中传入了参数f之后,模板会自动地进行类型推断,将返回值传递给R,将参数类型double, float打包传递给Args。此时ret_t 就是函数f的返回值类型int。

完整测试代码

#include <iostream>
#include <utility>
using namespace std;
int f(double, float)
{
    return 1;
}
double g(double, float)
{
    return 1.0;
}
template <class R, class... Args>
R getRetValue(R(Args...));

//利用函数重载判断类型
void test(int v)
{
    cout << "this is int" << endl;
}
void test(double v)
{
    cout << "this is double" << endl;
}

int main()
{
    using ret_t_f = decltype(getRetValue(f));
    ret_t_f testf;
    test(testf);
    using ret_t_g = decltype(getRetValue(g));
    ret_t_g testg;
    test(testg);
    return 0;
}

输出

this is int
this is double

参数个数

如果我们需要获取参数的个数,那么可以用如下代码来实现:

template <class R, class... Args>
constexpr size_t getNumArgs(R(*)(Args...)) {
	return sizeof...(Args);
}

跟上面的做法类似,使用sizeof…可以获取参数的个数。

当函数是类成员函数的时候,上面的两个函数需要对应修改为:

template <class R, class C, class... Args>
R getRetValue(R(C::*)(Args...));

template <class R, class C, class... Args>
constexpr size_t getNumArgs(R(C::*)(Args...)) {
	return sizeof...(Args);
}

其中(C::*)表示这是类C的一个成员函数指针,当我们传入一个类成员函数指针时候,R、C、Args都会被对应的推断出来。

完整测试例子

#include <iostream>
#include <utility>
using namespace std;
int f(double, float)
{
    return 1;
}
double g(double)
{
    return 1.0;
}
template <class R, class... Args>
constexpr size_t getNumArgs(R (*)(Args...))
{
    return sizeof...(Args);
}

template <class R, class C, class... Args>
constexpr size_t getNumArgs(R (C::*)(Args...))
{
    return sizeof...(Args);
}

class A {
public:
    static void f(int, int, int) {};
};

int main()
{
    cout << getNumArgs(f) << endl;
    cout << getNumArgs(g) << endl;
    cout << getNumArgs(A::f) << endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值