如何像传递未定义函数一样传递未定义方法
How Can I Pass an Undefined Method Like an Undefined Function
考虑到我正在传递 undefined 函数:
void foo(char, short);
我 通过使用此函数调用 decltype(m(foo))
来获取参数的类型 tuple
:
template <typename Ret, typename... Args>
tuple<Args...> m(Ret(Args...));
我现在想传递一个 undefined 方法:
struct bar { void foo(char, short); };
我曾尝试重写 m
如下:
template <typename Ret, typename C, typename... Args>
tuple<Args...> m(Ret(C::*)(Args...));
但是当 I try to call this 与 decltype(m(bar::foo))
类似时,我得到错误:
invalid use of non-static member function void bar::foo(char, short int)
如何像我为函数所做的那样传递此方法?
如果你只想在上面使用decltype
,你只需要一个额外的&
:
decltype(m(&bar::foo))
考虑到我正在传递 undefined 函数:
void foo(char, short);
我 decltype(m(foo))
来获取参数的类型 tuple
:
template <typename Ret, typename... Args>
tuple<Args...> m(Ret(Args...));
我现在想传递一个 undefined 方法:
struct bar { void foo(char, short); };
我曾尝试重写 m
如下:
template <typename Ret, typename C, typename... Args>
tuple<Args...> m(Ret(C::*)(Args...));
但是当 I try to call this 与 decltype(m(bar::foo))
类似时,我得到错误:
invalid use of non-static member function
void bar::foo(char, short int)
如何像我为函数所做的那样传递此方法?
如果你只想在上面使用decltype
,你只需要一个额外的&
:
decltype(m(&bar::foo))