/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
basic_content/func_pointer/func_pointer.cpp
31 строка
639 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
/** * @file func_pointer.cpp * @brief 函数指针的使用! * @author 光城 * @version v1 * @date 2019-07-20 */ #include <iostream> using namespace std; /** * @brief * 定义了一个变量pFun,这个变量是个指针,指向返回值为空和参数为int的函数的指针! */ void (*pFun)(int); /** * @brief 代表一种新类型,不是变量!所以与上述的pFun不一样! */ typedef void (*func)(void); void myfunc(void) { cout << "asda" << endl; } void glFun(int a) { cout << a << endl; } int main() { func pfun = myfunc; /*赋值*/ pfun(); /*调用*/ pFun = glFun; (*pFun)(2); }