gpt4 book ai didi

c++ - 成员函数参数的类型

转载 作者:太空狗 更新时间:2023-10-29 21:12:13 24 4
gpt4 key购买 nike

我正在使用 C++11 尝试从函数名称中获取函数参数的类型,前提是函数签名是明确的。最终,我试图在调用函数之前检查参数是否正是我想要的类型。

到目前为止,由于这个解决方案,我可以使用非成员函数来做到这一点: Unpacking arguments of a functional parameter to a C++ template class

我对它稍作编辑以获得以下类:

template<typename T>
struct FunctionSignatureParser; // unimplemented primary template
template<typename Result, typename...Args>
struct FunctionSignatureParser<Result(Args...)>
{
using return_type = Result;
using args_tuple = std::tuple<Args...>;
template <size_t i> struct arg
{
typedef typename std::tuple_element<i, args_tuple>::type type;
};
};

例如,我可以在编译时检查函数的类型:

short square(char x) { // 8-bit integer as input, 16-bit integer as output
return short(x)*short(x);
}
int main() {
char answer = 42;
static_assert(std::is_same<char, FunctionSignatureParser<decltype(square)>::arg<0>::type>::value, "Function 'square' does not use an argument of type 'char'");
static_assert(std::is_same<short, FunctionSignatureParser<decltype(square)>::return_type>::value, "Function 'square' does not return a value of type 'short'");
short sqrAnswer = square(answer);
std::cout << "The square of " << +answer << " is " << +sqrAnswer << std::endl;
return 0;
}

>> Online code with gcc

但是当我想检查成员函数的类型时,有些编译器并不满意:

struct Temperature
{
double degrees;
Temperature add(double value);
};
int main() {
Temperature t{16};
double increment{8};
static_assert(std::is_same<double, FunctionSignatureParser<decltype(t.add)>::arg<0>::type>::value, "Method 'Temperature::add' does not use an argument of type 'double'");
std::cout << t.degrees << u8" \u00b0C + " << increment << " == " << t.add(increment).degrees << u8" \u00b0C" << std::endl;
return 0;
}

这是 gcc 6.3 必须说的:

error: invalid use of non-static member function ‘Temperature Temperature::add(double)’

>> Online code with gcc

这是 clang 4.0 必须说的:

error: reference to non-static member function must be called

>> Online code with clang

我已经尝试过这些选项,但无济于事:

decltype(Temperature::add)
decltype(std::declval<Temperature>().add)

decltype 中的非静态成员函数有什么问题?由于 decltype 中的表达式未被评估,static 限定符应该无关紧要,对吧?

郑重声明,MSVC12 在这种情况下成功了。不过,我无法判断 Microsoft 编译器是对还是错。 (请不要让这个线程成为编译器 war )

此外,如果您有不涉及初始方法的参数检查解决方案,我也愿意接受。

最佳答案

您需要对成员函数进行另一个模板特化,如下所示:

template<typename ClassType, typename Result, typename...Args>
struct FunctionSignatureParser<Result(ClassType::*)(Args...)>
{
using return_type = Result;
using args_tuple = std::tuple<Args...>;
template <size_t i> struct arg
{
typedef typename std::tuple_element<i, args_tuple>::type type;
};
};

它可以这样使用:

    static_assert(std::is_same<double, FunctionSignatureParser<decltype(&Temperature::add)>::arg<0>::type>::value, "Method 'Temperature::add' does not use an argument of type 'double'");

这适用于 gcc 7.2,尚未测试其他编译器

关于c++ - 成员函数参数的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47906426/

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