C++ 函数库 - greater_equal



描述

它是一个用于大于或等于比较的功能对象类,以及一个二元函数对象类,其调用返回其第一个参数是否大于或等于第二个参数(由运算符 >= 返回)。

声明

以下是 std::greater_equal 的声明。

template <class T> struct greater_equal;

C++11

template <class T> struct greater_equal;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的示例说明了 std::greater_equal 的用法。

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

int main () {
   int numbers[]={200,-30,10,-40,0};
   int cx = std::count_if (numbers, numbers+5, std::bind2nd(std::greater_equal<int>(),0));
   std::cout << "There are " << cx << " non-negative elements.\n";
   return 0;
}

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

There are 3 non-negative elements. 
functional.htm
广告