C++ 函数库 - plus



描述

这是一个加法函数对象类和二元函数对象类,其调用返回其两个参数相加的结果(如 operator + 返回的结果)。

声明

以下是 std::plus 的声明。

template <class T> struct plus;

C++11

template <class T> struct plus;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的示例解释了 std::plus。

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

int main () {
   int first[]={15,12,30,45,15};
   int second[]={10,20,30,40,50};
   int results[5];
   std::transform (first, first+5, second, results, std::plus<int>());
   for (int i=0; i<5; i++)
      std::cout << results[i] << ' ';
   std::cout << '\n';
   return 0;
}

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

25 32 60 85 65 
functional.htm
广告