类模板
<functional>

std::logical_and

template <class T> struct logical_and;
逻辑与函数对象类
二元函数对象类,其调用返回其两个参数的逻辑“与”操作的结果(由 operator && 返回)。

泛指,函数对象 是一个类的实例,该类定义了成员函数operator()。这个成员函数允许对象以与函数调用相同的语法使用。

它的定义与以下行为相同:

1
2
3
template <class T> struct logical_and : binary_function <T,T,bool> {
  bool operator() (const T& x, const T& y) const {return x&&y;}
};
1
2
3
4
5
6
template <class T> struct logical_and {
  bool operator() (const T& x, const T& y) const {return x&&y;}
  typedef T first_argument_type;
  typedef T second_argument_type;
  typedef bool result_type;
};

模板参数

T
传递给函数调用的参数的类型。
该类型应支持 (operator&&) 操作。

成员类型

成员类型定义说明
first_argument_typeT成员 operator() 的第一个参数的类型
second_argument_typeT成员 operator() 的第二个参数的类型
result_typebool成员 operator() 返回的类型

成员函数

bool operator() (const T& x, const T& y)
成员函数,返回其两个参数是否都被视为真(x&&y)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// logical_and example
#include <iostream>     // std::cout, std::boolalpha
#include <functional>   // std::logical_and
#include <algorithm>    // std::transform

int main () {
  bool foo[] = {true,false,true,false};
  bool bar[] = {true,true,false,false};
  bool result[4];
  std::transform (foo, foo+4, bar, result, std::logical_and<bool>());
  std::cout << std::boolalpha << "Logical AND:\n";
  for (int i=0; i<4; i++)
    std::cout << foo[i] << " AND " << bar[i] << " = " << result[i] << "\n";
  return 0;
}

输出

Logical AND:
true AND true = true
false AND true = false
true AND false = false
false AND false = false


另见