函数名与函数指针
摘要:
先来看一个程序:/************************************************************* 函数指针与函数名**************************************************************/#include <iostream>using namespace std;int max(int, int);int main(){ cout<<max(1, 2)<<endl; cout<<(*max)(1, 2)<<endl; cout<&l 阅读全文
posted @ 2012-10-29 21:47 深圳彦祖 阅读(331) 评论(0) 推荐(0) 编辑