C++ 函数库 - less_equal



描述

这是一个用于小于等于比较的函数对象类,也是一个二元函数对象类,其调用返回其第一个参数是否小于等于第二个参数(由运算符<=返回)。

声明

以下是 std::less_equal 的声明。

template <class T> struct less_equal;

C++11

template <class T> struct less_equal;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的例子解释了 std::less_equal。

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

int main () {
   int numbers[]={250,500,70,100,125};
   int cx = std::count_if (numbers, numbers+5, std::bind2nd(std::less_equal<int>(),100));
   std::cout << "There are " << cx << " elements lower than or equal to 100.\n";
   return 0;
}

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

There are 2 elements lower than or equal to 100
functional.htm
广告