类模板
<functional>

std::divides

template <class T> struct divides;
除法函数对象类
二元函数对象类,其调用返回其第一个参数除以第二个参数的结果(由 operator / 返回)。

泛指,函数对象 是一个类的实例,该类定义了成员函数operator()。这个成员函数允许对象以与函数调用相同的语法使用。

它的定义与以下行为相同:

1
2
3
template <class T> struct divides : binary_function <T,T,T> {
  T operator() (const T& x, const T& y) const {return x/y;}
};
1
2
3
4
5
6
template <class T> struct divides {
  T operator() (const T& x, const T& y) const {return x/y;}
  typedef T first_argument_type;
  typedef T second_argument_type;
  typedef T result_type;
};

此类对象可用于标准算法,例如 transformaccumulate

模板参数

T
函数调用参数和返回值的类型。
类型应支持 (operator/) 操作。

成员类型

成员类型定义说明
first_argument_typeT成员 operator() 的第一个参数的类型
second_argument_typeT成员 operator() 的第二个参数的类型
result_typeT成员 operator() 返回的类型

成员函数

T operator() (const T& x, const T& y)
成员函数,返回其参数的除法(x/y)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// divides example
#include <iostream>     // std::cout
#include <functional>   // std::divides
#include <algorithm>    // std::transform

int main () {
  int first[]={10,40,90,40,10};
  int second[]={1,2,3,4,5};
  int results[5];
  std::transform (first, first+5, second, results, std::divides<int>());
  for (int i=0; i<5; i++)
    std::cout << results[i] << ' ';
  std::cout << '\n';
  return 0;
}

输出

10 20 30 10 2


另见