标签:std log 简化 另一个 定义 .com 参考 images arc
#include <iostream> using namespace std; void fun1(char *s) { cout << s << endl; } int main() { void (*funp)(char *); funp = fun1; funp("hello"); getchar(); return 0; }
#include <iostream> using namespace std; typedef void (*FP)(char *); void fun1(char *s) { cout << s << endl; } int main() { FP funp; funp = fun1; funp("hello"); getchar(); return 0; }
回调函数
#include <iostream> using namespace std; void fun1(char *s) { cout << s << endl; } void callback_fun(char *s, void(*fun)(char *)) { fun(s); } int main() { callback_fun("hello",fun1); getchar(); return 0; }
标签:std log 简化 另一个 定义 .com 参考 images arc
原文地址:http://www.cnblogs.com/raichen/p/7222289.html