如何将函数指针传递给此函数

时间:2012-10-17 18:15:33

标签: c++ function-pointers

我正在尝试使用一个线程库,它具有如下定义的线程启动函数:

int vg_thread_create(VGThreadFunction func, 
  void *arg, 
  VGThreadDescriptor *tid,
  void *stack, 
  size_t stack_size,
  long priority,
  int flags );

VGThreadFunction是以下typedef:

typedef void* (*VGThreadFunction) ( void* )

为了论证,我有一个这样的函数:

void doit() {
  cout << "Woohoo printing stuff in new thread\n";
}

此函数的签名不是void * func(void *) - 我是否被迫使用这样的函数签名?

如果我尝试:

VGThreadFunction testfunc = &doit;

我得到了

错误C2440:'初始化':无法从'void(__ cdecl *)(void)'转换为'VGThreadFunction'

如何使用vg_thread_create?

修改

我试过了:

void* doit(void* donothingvar) {
  cout << "printing stuff in new thread\n";
  return donothingvar;
}

然后在一个函数中:

VGThreadFunction testfunc = (VGThreadFunction)doit;

int ret = vg_thread_create(testfunc, 0, 0, 0, 0, 0, 0);

然后我在调用vg_thread_create时遇到访问冲突。

如果我进入该功能,它会在调用_beginthreadex

时实际崩溃
Unhandled exception at 0x0040f5d3 in threadtest.exe: 0xC0000005: Access violation  writing location 0x00000000.

有什么想法吗?

通过单步执行函数我得出结论我必须传入一个有效的指针 - 传递零会导致空取消引用。抱歉,有点具体。

1 个答案:

答案 0 :(得分:6)

是的,函数签名必须匹配。只需在函数上添加一个虚拟参数。