0
#include<iostream>

template<typename T>
class testClass {
  public:
  T a;
};

template<typename T>
void testFunc( void *a ) {
  testClass<T> *tempClass = reinterpret_cast<testClass<T> *>(a);
  tempClass->a++;
}

int main() {
  void (*foo)(void *);
  foo = testFunc<int>;
  testClass<int> a;
  a.a = 100;
  std::cerr << "Before = " << a.a << "\n";
  foo(&a);
  std::cerr << "After = " << a.a << "\n";
  return 0;
}

这个模板函数testFunc可以作为函数指针安全地传递给 C 函数吗?我不清楚 C++ 如何能够将正确的内存地址分配给函数指针。混淆是因为我无法编译将类成员函数作为函数指针参数传递的相同代码。

4

1 回答 1

0

方法的要点是,为了访问方法指针,编译器会要求您提供调用此方法的对象,以便this在访问方法时自动填充成员。

在这里,您提到了一个简单的函数指针,因此您不需要提供任何对象,所以是的,您可以假设它是安全的。

于 2013-04-29T04:46:02.210 回答