C++ 函数库 - logical_or



描述

它是一个逻辑或函数对象类和二元函数对象类,其调用返回其两个参数之间逻辑“或”运算的结果(如运算符 || 返回的结果)。

声明

以下是 std::logical_or 的声明。

template <class T> struct logical_or;

C++11

template <class T> struct logical_or;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

以下示例说明了 std::logical_or。

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

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

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

Logical OR example as shown below:
true OR true = true
true OR false = true
false OR true = true
false OR false = false
functional.htm
广告