gpt4 book ai didi

c++ - 确定未定义函数的参数类型

转载 作者:可可西里 更新时间:2023-11-01 18:38:21 25 4
gpt4 key购买 nike

我最近了解到我不能:

  1. Take the address of an undefined function
  2. Take the address of a templatized function with a type it would fail to compile for

但我最近也了解到我可以 call decltype to get the return type of said function

所以一个未定义的函数:

int foo(char, short);

我想知道是否有一种方法可以将参数类型与 tuple 中的类型相匹配。这显然是一个元编程问题。在这个例子中,我真正想要的是类似 decltypeargs 的东西:

enable_if_t<is_same_v<tuple<char, short>, decltypeargs<foo>>, int> bar;

谁能帮我理解 decltypeargs 是如何制作的?

最佳答案

对于非重载函数、函数指针和成员函数指针,简单地做decltype(function)在未评估的上下文中为您提供函数的类型,并且该类型包含所有参数。

因此,要将参数类型作为元组获取,您所需要的只是大量特化:

// primary for function objects
template <class T>
struct function_args
: function_args<decltype(&T::operator()>
{ };

// normal function
template <class R, class... Args>
struct function_args<R(Args...)> {
using type = std::tuple<Args...>;
};

// pointer to non-cv-qualified, non-ref-qualified, non-variadic member function
template <class R, class C, class... Args>
struct function_args<R (C::*)(Args...)>
: function_args<R(Args...)>
{ };

// + a few dozen more in C++14
// + a few dozen more on top of that with noexcept being part of the type system in C++17

有了那个:

template <class T>
using decltypeargs = typename function_args<T>::type;

这需要你写decltypeargs<decltype(foo)> .


对于 C++17,我们将有 template <auto> , 所以上面可以是:

template <auto F>
using decltypeargs = typename function_args<decltype(F)>::type;

你会得到 decltypeargs<foo>句法。

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

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