命名空间
变体
操作

std::logical_or

来自 cppreference.cn
 
 
 
函数对象
函数调用
(C++17)(C++23)
恒等函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(until C++17*)(until C++17*)(until C++17*)(until C++17*)
(直到 C++20*)
(直到 C++20*)
 
定义于头文件 <functional>
template< class T >
struct logical_or;
(until C++14)
template< class T = void >
struct logical_or;
(C++14 起)

用于执行逻辑或 (logical disjunction) 的函数对象。实际上调用类型 T 上的 operator||

目录

[edit] 特化

当未指定 T 时,标准库提供了 std::logical_or 的特化,它让参数类型和返回类型被推导。

实现 x || y 的函数对象,推导参数和返回类型
(类模板特化) [edit]
(C++14 起)

[edit] 成员类型

类型 定义
result_type (C++17 中已弃用)(C++20 中已移除) bool
first_argument_type (C++17 中已弃用)(C++20 中已移除) T
second_argument_type (C++17 中已弃用)(C++20 中已移除) T

这些成员类型是通过公开继承 std::binary_function<T, T, bool> 获得的。

(C++11 前)

[edit] 成员函数

operator()
返回两个参数的逻辑或
(公开成员函数)

std::logical_or::operator()

bool operator()( const T& lhs, const T& rhs ) const;
(C++14 起为 constexpr)

返回 lhsrhs 的逻辑或。

参数

lhs, rhs - 要计算逻辑或的值

返回值

lhs || rhs 的结果。

[编辑] 异常

可能抛出实现定义的异常。

可能的实现

constexpr bool operator()(const T& lhs, const T& rhs) const 
{
    return lhs || rhs;
}