函数指针数组的定义形式和取值执行_数组指针作为函数参数

函数指针数组的定义形式和取值执行_数组指针作为函数参数函数指针与函数指针数组的使用方法1 #include <iostream> 2 #include <vector> 3 #include <algorithm> //copy算法 4 #include <numeric>

函数指针与函数指针数组的使用方法   1 #include <iostream> 2 #include <vector> 3 #include <algorithm> //copy算法 4 #include <numeric> //accumulate算法 5 #include <functional> 6 #include <iterator> //输出迭代器 7 using namespace std; 8 9 //定义sumSquares函数,它计算第二个实参value的平方,并将结果和第一个实参相加,返回二者之和。 10 int sumSquares(int total,int value) 11 { 12 return total + value*value; 13 } 14 int _tmain(int argc, _TCHAR* argv[]) 15 { 16 const int SIZE = 10; 17 int array[SIZE] = {1,2,3,4,5,6,7,8,9,10}; 18 vector<int> integers(array,array+SIZE); //素拷贝 19 ostream_iterator<int> output(cout,” “); 20 int result; 21 cout<<“vector integers contains:   ”; 22 copy(integers.begin(),integers.end(),output); 23 24 //accumulate函数将它所迭代的序列的每个素作为第二个实参传递给sumSquares函数 25 //第一次调用sumSquares函数时,第一个实参是total的初始值(作为accumulate的第三个实参提供,在这个例子中为0) 26 //在sumSquares函数的所有后续调用中,传给它的第一个实参是前一次调用sumSquares时所返回的当前和。 27 //当accumulate结束时,它返回序列中所有素的平方和。 28 result = accumulate(integers.begin(),integers.end(),0,sumSquares);//用一个指向sumSquares的函数指针作为最后一个实参调用accumulate函数 29 30 cout<<”   Sum of square of element in integers using ” 31 <<“binary   funcion sunSquare: “<<result; 32 33 cout<<endl; 34 system(“pause”); 35 return 0; 36 }

2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/51184.html

(0)
上一篇 2024年 9月 3日
下一篇 2024年 9月 3日

相关推荐

关注微信