C++ 函数库 - 乘法



描述

它是一个乘法函数对象类和二元函数对象类,其调用返回其两个参数相乘的结果(如运算符 * 返回的那样)。

声明

以下是 std::multiplies 的声明。

template <class T> struct multiplies;

C++11

template <class T> struct multiplies;

参数

T − 它表示函数调用参数和返回值的类型。

返回值

异常

noexcep − 它不抛出任何异常。

示例

以下示例说明了 std::multiplies 的用法。

#include <iostream>
#include <functional>
#include <numeric>

int main () {
   int numbers[9];
   int factorials[9];
   for (int i=0;i<9;i++) numbers[i]=i+1;
   std::partial_sum (numbers, numbers+9, factorials, std::multiplies<int>());
   for (int i=0; i<5; i++)
      std::cout << "factorial of " << numbers[i] << "! is " << factorials[i] << '\n';
   return 0;
}

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

factorial of 1! is 1
factorial of 2! is 2
factorial of 3! is 6
factorial of 4! is 24
factorial of 5! is 120
functional.htm
广告