Merge pull request #146 from executorOfZero/master

Update func_pointer.cpp
This commit is contained in:
Francis
2022-04-10 16:45:21 +08:00
committed by GitHub

View File

@@ -10,7 +10,7 @@
using namespace std; using namespace std;
/** /**
* @brief 定义了一个变量pFun这个变量是个指针指向返回值和参数都是空的函数的指针! * @brief 定义了一个变量pFun这个变量是个指针指向返回值为空和参数为int的函数的指针!
*/ */
void (*pFun)(int); void (*pFun)(int);