function template
<functional>

std::not1

template <class Predicate>  unary_negate<Predicate> not1 (const Predicate& pred);
返回一元函数对象的否定
构造一个一元函数对象(类型为 unary_negate),该对象返回 pred 的相反值(由运算符 ! 返回)。

它的定义与以下行为相同:
1
2
3
4
template <class Predicate> unary_negate<Predicate> not1 (const Predicate& pred)
{
  return unary_negate<Predicate>(pred);
}

参数

pred
定义了成员 argument_type 的一元函数对象类类型。

返回值

pred 行为相反的一元函数对象。
参见 unary_negate

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// not1 example
#include <iostream>     // std::cout
#include <functional>   // std::not1
#include <algorithm>    // std::count_if

struct IsOdd {
  bool operator() (const int& x) const {return x%2==1;}
  typedef int argument_type;
};

int main () {
  int values[] = {1,2,3,4,5};
  int cx = std::count_if (values, values+5, std::not1(IsOdd()));
  std::cout << "There are " << cx << " elements with even values.\n";
  return 0;
}

输出

There are 2 elements with even values.


另见