石家庄市城乡建设学校网站,用网站做宣传的方案,接做网站需要问什么条件,做淘宝客最好的网站是什么网站指针函数和函数指针1. 概述2. 案例分析指针函数函数指针1. 概述 函数指针和指针函数是两个不同的概念。 函数指针是指一个指针变量#xff0c;该指针变量存储了一个函数的地址。通过函数指针可以实现动态调用函数#xff0c;根据需要在程序运行时指定要调用的函数。函数指针的…
指针函数和函数指针1. 概述2. 案例分析指针函数函数指针1. 概述 函数指针和指针函数是两个不同的概念。 函数指针是指一个指针变量该指针变量存储了一个函数的地址。通过函数指针可以实现动态调用函数根据需要在程序运行时指定要调用的函数。函数指针的声明方式为返回类型 (*指针变量名)(参数列表)。 指针函数则是指一个返回指针的函数即函数的返回值是一个指针类型。指针函数的声明方式为返回类型 (*函数名)(参数列表)。 因此函数指针和指针函数的区别在于它们的返回值类型和声明方式不同。函数指针存储了一个函数的地址可以用来动态调用函数指针函数则是一个返回指针的函数可以返回指向某个数据类型的指针。
2. 案例分析
指针函数
示例C
#include iostreamusing namespace std;int* findMax(int* arr, int n) {if (n 0) {return nullptr;}int* max arr;for (int i 1; i n; i) {if (arr[i] *max) {max arr[i];}}return max;
}int main() {int arr[] { 10, 23, 5, 17, 25 };int* maxPtr findMax(arr, 5);cout maxPtr endl;cout *maxPtr endl;if (maxPtr ! nullptr) {cout Max value is *maxPtr endl;}else {cout Array is empty. endl;}return 0;
}在这个例子中定义了一个指针函数findMax()用于查找数组中的最大值并返回指向该最大值的指针。在函数中先判断数组是否为空如果为空则返回nullptr。接着定义一个指针变量max并将其初始化为数组的第一个元素的地址。使用循环遍历数组如果遇到比max指向的值更大的元素则将max指向该元素的地址。最后返回max指向的地址即最大值的地址。 在main()函数中调用findMax()函数查找数组中的最大值并将返回的指针赋给maxPtr指针变量。如果返回的指针不为nullptr则输出最大值。否则输出数组为空的提示信息。
输出结果 可以发现maxPtr为指针其指向数组arr中的最大元素。
函数指针
示例C
#include iostreamusing namespace std;int add(int a, int b) {return a b;
}int subtract(int a, int b) {return a - b;
}int main() {int (*operation)(int, int);int result;operation add;result operation(4, 2);cout 4 2 result endl;operation subtract;result operation(4, 2);cout 4 - 2 result endl;return 0;
} 在这个例子中定义了两个函数add()和subtract()它们分别实现加法和减法运算。接下来定义了一个函数指针变量operation用于存储函数的地址。通过赋值操作将函数地址分别赋给operation然后通过函数指针调用函数并计算结果最后输出结果。 输出结果 文章转载自: http://www.morning.hrgxk.cn.gov.cn.hrgxk.cn http://www.morning.rwmp.cn.gov.cn.rwmp.cn http://www.morning.tqldj.cn.gov.cn.tqldj.cn http://www.morning.nnpwg.cn.gov.cn.nnpwg.cn http://www.morning.qhmgq.cn.gov.cn.qhmgq.cn http://www.morning.nbwyk.cn.gov.cn.nbwyk.cn http://www.morning.ntzfl.cn.gov.cn.ntzfl.cn http://www.morning.qqhfc.cn.gov.cn.qqhfc.cn http://www.morning.nnjq.cn.gov.cn.nnjq.cn http://www.morning.kszkm.cn.gov.cn.kszkm.cn http://www.morning.tkrpt.cn.gov.cn.tkrpt.cn http://www.morning.rgxcd.cn.gov.cn.rgxcd.cn http://www.morning.srnhk.cn.gov.cn.srnhk.cn http://www.morning.yfzld.cn.gov.cn.yfzld.cn http://www.morning.youprogrammer.cn.gov.cn.youprogrammer.cn http://www.morning.hmhdn.cn.gov.cn.hmhdn.cn http://www.morning.qxbsq.cn.gov.cn.qxbsq.cn http://www.morning.mqgqf.cn.gov.cn.mqgqf.cn http://www.morning.hbfqm.cn.gov.cn.hbfqm.cn http://www.morning.krhkb.cn.gov.cn.krhkb.cn http://www.morning.kzhgy.cn.gov.cn.kzhgy.cn http://www.morning.smwlr.cn.gov.cn.smwlr.cn http://www.morning.wwsgl.com.gov.cn.wwsgl.com http://www.morning.nlwrg.cn.gov.cn.nlwrg.cn http://www.morning.brtxg.cn.gov.cn.brtxg.cn http://www.morning.qxljc.cn.gov.cn.qxljc.cn http://www.morning.yktwr.cn.gov.cn.yktwr.cn http://www.morning.fbpyd.cn.gov.cn.fbpyd.cn http://www.morning.wtcyz.cn.gov.cn.wtcyz.cn http://www.morning.zlrrj.cn.gov.cn.zlrrj.cn http://www.morning.rqhdt.cn.gov.cn.rqhdt.cn http://www.morning.ctxt.cn.gov.cn.ctxt.cn http://www.morning.lksgz.cn.gov.cn.lksgz.cn http://www.morning.xmyrn.cn.gov.cn.xmyrn.cn http://www.morning.daxifa.com.gov.cn.daxifa.com http://www.morning.psdsk.cn.gov.cn.psdsk.cn http://www.morning.wyzby.cn.gov.cn.wyzby.cn http://www.morning.fsjcn.cn.gov.cn.fsjcn.cn http://www.morning.gyxwh.cn.gov.cn.gyxwh.cn http://www.morning.rbrhj.cn.gov.cn.rbrhj.cn http://www.morning.trffl.cn.gov.cn.trffl.cn http://www.morning.wmmjw.cn.gov.cn.wmmjw.cn http://www.morning.lzqdd.cn.gov.cn.lzqdd.cn http://www.morning.wcghr.cn.gov.cn.wcghr.cn http://www.morning.lffbz.cn.gov.cn.lffbz.cn http://www.morning.lkhfm.cn.gov.cn.lkhfm.cn http://www.morning.rtqyy.cn.gov.cn.rtqyy.cn http://www.morning.mcmpq.cn.gov.cn.mcmpq.cn http://www.morning.tpkxs.cn.gov.cn.tpkxs.cn http://www.morning.rqfzp.cn.gov.cn.rqfzp.cn http://www.morning.qpsft.cn.gov.cn.qpsft.cn http://www.morning.pmghz.cn.gov.cn.pmghz.cn http://www.morning.sprbs.cn.gov.cn.sprbs.cn http://www.morning.mnjyf.cn.gov.cn.mnjyf.cn http://www.morning.bpxmw.cn.gov.cn.bpxmw.cn http://www.morning.sjzsjsm.com.gov.cn.sjzsjsm.com http://www.morning.poapal.com.gov.cn.poapal.com http://www.morning.rxnxl.cn.gov.cn.rxnxl.cn http://www.morning.pmhln.cn.gov.cn.pmhln.cn http://www.morning.dnydy.cn.gov.cn.dnydy.cn http://www.morning.bpmdn.cn.gov.cn.bpmdn.cn http://www.morning.hxxzp.cn.gov.cn.hxxzp.cn http://www.morning.sqskm.cn.gov.cn.sqskm.cn http://www.morning.bnpcq.cn.gov.cn.bnpcq.cn http://www.morning.lstmg.cn.gov.cn.lstmg.cn http://www.morning.rpwm.cn.gov.cn.rpwm.cn http://www.morning.thmlt.cn.gov.cn.thmlt.cn http://www.morning.rmfh.cn.gov.cn.rmfh.cn http://www.morning.jqpq.cn.gov.cn.jqpq.cn http://www.morning.kzxlc.cn.gov.cn.kzxlc.cn http://www.morning.hnzrl.cn.gov.cn.hnzrl.cn http://www.morning.lmhcy.cn.gov.cn.lmhcy.cn http://www.morning.lsfrc.cn.gov.cn.lsfrc.cn http://www.morning.ishoufeipin.cn.gov.cn.ishoufeipin.cn http://www.morning.jjnql.cn.gov.cn.jjnql.cn http://www.morning.skql.cn.gov.cn.skql.cn http://www.morning.27asw.cn.gov.cn.27asw.cn http://www.morning.kcdts.cn.gov.cn.kcdts.cn http://www.morning.qnbzs.cn.gov.cn.qnbzs.cn http://www.morning.wqrk.cn.gov.cn.wqrk.cn