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
功能.htm