- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 函数库 - 逻辑或
描述
它是逻辑 OR 函数对象类和二元函数对象类,其调用返回其两个参数之间的逻辑“或”运算的结果(由运算符 || 返回)。
宣言
以下是 std::logic_or 的声明。
template <class T> struct logical_or;
C++11
template <class T> struct logical_or;
参数
T - 它是函数调用的参数类型和返回类型。
返回值
没有任何
例外情况
noexcep - 它不会抛出任何异常。
例子
在下面的示例中解释了 std::logic_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
功能.htm