您的位置:首页 > 编程语言 > C语言/C++

第十五周 阅读程序(5)

2016-06-04 10:05 218 查看
/*
*Copyright(c) 2016, 烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:main.cpp
*作    者:李德坤
*完成日期:2016年6月4日
*版本号:v1.0
*
*问题描述:阅读程序(5)
*输入描述:无
*输出描述:无
*/
#include <iterator>
#include <algorithm>
#include <functional>
#include <iostream>
#include <vector>
using namespace std;
class Angle
{
int degrees;
public:
Angle(int deg) : degrees(deg) {}
int mul(int times)
{
return degrees *= times;
}
};
int main()
{
int x[] = {1, 2, 4, 5, 8};
vector<Angle> va;
for(int i =10; i <= 50; i += 10)
va.push_back(Angle(i));
transform(va.begin(), va.end(), x, ostream_iterator<int>(cout , "  "), mem_fun_ref(&Angle::mul));
//mem_fun_ref成员函数适配器,x数组中每个元素作为times参数传入mul,i作为deg传入degress,最后degress与times相乘
cout << endl;
return 0;
}
/*
输出结果为:
10  40  120  200  400
*/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c++