当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# logical_or用法及代码示例



描述

它是一个逻辑 OR 函数对象类和二元函数对象类,其调用返回其两个参数之间的逻辑 "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

相关用法


注:本文由纯净天空筛选整理自 C++ Functional Library - logical_or。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。