C++ 函数库 - 除法


描述

它是一个除法函数对象类和二元函数对象类,其调用返回其第一个参数除以第二个参数的结果(由运算符 / 返回)。

宣言

以下是 std::divides 的声明。

template <class T> struct divides;

C++11

template <class T> struct divides;

参数

T - 它是函数调用的参数类型和返回类型。

返回值

没有任何

例外情况

noexcep - 它不会抛出任何异常。

例子

在下面的示例中解释了 std::divides。

#include <iostream>     
#include <functional>   
#include <algorithm>    

int main () {
   int first[]={10,40,90,40,10};
   int second[]={10,20,30,40,50};
   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;
}

让我们编译并运行上面的程序,这将产生以下结果 -

1 2 3 1 0  
功能.htm