C++ Functional 库 - greater_equal
描述
它是一个用于大于或等于比较的函数对象类和二进制函数对象类,其调用返回其第一个参数比较是否大于或等于第二个(由运算符 >= 返回)。
声明
以下是 std::greater_equal 的声明。
template <class T> struct greater_equal;
C++11
template <class T> struct greater_equal;
参数
T − 它是函数调用的参数类型和返回类型。
返回值
none
异常
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.