开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
问题(Question):
变量储存函式指标的方式
程式码(Code):(请善用置底文网页, 记得排版)
函式指标宣告如下
void (helloworld::*pf)() = &helloworld::funcA;
或是
int (helloworld::*pf2)(int a,int b) = &helloworld::funcB;
也就是储存不同的引述与回传值的function pointer
template要如何宣告?