码迷,mamicode.com
首页 > 编程语言 > 详细

【c++程序】函数指针

时间:2015-04-21 18:06:12      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
using namespace std;
#include<cstring>
void reset(int a[],int n);
void input(int a[],int n);
void output(int a[],int n);
void sort(int a[],int n);
int main()
{
	void (*fp)(int a[],int n)=NULL;//相应的函数指针
	int x[5];
	fp=output;
	output(x,5);
	fp(x,5);
	fp=reset;
	fp(x,5);
	fp=output;
	fp(x,5);
}
void reset(int a[],int n)
{
	memset(a,0,sizeof(int)*n);//设置内存中数据
	/*for(int i=0;i<n;i++)
		a[i]=0;*/
}
void output(int a[],int n)
{
	for(int i=0;i<n;i++)
		cout<<a[i]<<' ';
	cout<<endl;
}

【c++程序】函数指针

标签:

原文地址:http://blog.csdn.net/u012503639/article/details/45172793

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!