大家好
我有一个header, test.h, 有一个function pointer
typedef int(*pfnTest_t)(void* x, unsigned char* y, unsigned
int z);
一个API:
int test_api(pfnTest_t p_pfnTest);
然后有一个cpp
class B {
...
test();
...
}
B::B_API(void* x, unsigned char* y, unsigned int z){
...
}
B::test()
{
test_api(&B::B_API); // error!
}
compiler的时候 有error
请问这cpp里面如何把function pointer带进去??
谢谢!