非静态成员函数 reinterpret_cast 失败

non-static member function reinterpret_cast failed

代码:

#include <iostream>

using namespace std;

struct item
{
   int f1() {}
   double f2() {}

   static int  g1() {}
   static double  g2() {}

   void f0();
};
void item::f0()
{
   auto c1 = reinterpret_cast<decltype(f2)>(f1);
   auto c2 = reinterpret_cast<decltype(g2)>(g1);

   auto c3 = reinterpret_cast<decltype(&f2)>(f1);
   auto c4 = reinterpret_cast<decltype(&g2)>(g1);
}
int main()
{
   cout << "Hello world!" << endl;
   return 0;
}

错误信息:

main.cpp|17|error: invalid use of non-static member function|
main.cpp|18|error: invalid cast from type ‘int (*)()’ to type ‘double()’|
main.cpp|20|error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function.  Say ‘&item::f2’ [-fpermissive]|
main.cpp|20|error: invalid use of member function (did you forget the ‘()’ ?)

我的问题: 作为参数传递的成员函数会自动转换为指针,所以我尝试将参数转换为指针,但仍然失败。 我不明白为什么非静态成员函数根本不起作用 情况。

您需要转换 f1 的 return 值,而不是 f1。使用:

  auto c1 = reinterpret_cast<decltype(f2())>(f1());
                                               ^^ Call the function

对其他行进行类似的更改。

我误解了你的意思。以下应该有效:

   auto c1 = reinterpret_cast<decltype(&item::f2)>(&item::f1);
   auto c2 = reinterpret_cast<decltype(&g2)>(g1);

   auto c3 = reinterpret_cast<decltype(&item::f2)>(&item::f1);
   auto c4 = reinterpret_cast<decltype(&g1)>(g2);

f1 是一个非 static 成员函数。您可以使用 f1() 调用它。但是,如果没有函数调用语法,非静态成员函数不会自动退化为成员函数指针。要获取 struct 的成员函数指针,您需要使用 &item::f1.