C++ 函数库 - 取模



描述

这是一个模函数对象类和二元函数对象类,其调用返回其两个参数之间模运算的结果(如运算符 % 返回的结果)。

声明

以下是 std::modulus 的声明。

template <class T> struct modulus;

C++11

template <class T> struct modulus;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

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

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

int main () {
   int numbers[]={1,20,1003,42,56};
   int remainders[5];
   std::transform (numbers, numbers+5, remainders, std::bind2nd(std::modulus<int>(),2));
   for (int i=0; i<5; i++)
      std::cout << numbers[i] << " is " << (remainders[i]==0?"even":"odd") << '\n';
   return 0;
}

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

1 is odd
20 is even
1003 is odd
42 is even
56 is even
functional.htm
广告