类模板
<functional>

std::logical_or

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

通常,函数对象是定义了成员函数 operator() 的类的实例。此成员函数允许对象的使用语法与函数调用相同。

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

1
2
3
template <class T> struct logical_or : 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_or {
  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)
成员函数,返回其任一参数是否被视为 true (x||y)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// logical_or example
#include <iostream>     // std::cout, std::boolalpha
#include <functional>   // std::logical_or
#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_or<bool>());
  std::cout << std::boolalpha << "Logical OR:\n";
  for (int i=0; i<4; i++)
    std::cout << foo[i] << " OR " << bar[i] << " = " << result[i] << "\n";
  return 0;
}

输出

Logical OR:
true OR true = true
false OR true = true
true OR false = true
false OR false = false


另见