/*
*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
*/