C++ 函数库 - bit_or



描述

这是一个按位或函数对象类和二元函数对象类,其调用返回在其两个参数之间应用按位“或”运算的结果(如运算符 | 返回的那样)。

声明

以下是 std::bit_or 的声明。

template <class T> struct bit_or;

C++11

template <class T> struct bit_or;

参数

T − 它是函数调用的参数和返回类型的类型。

返回值

异常

noexcep − 它不抛出任何异常。

示例

下面的示例解释了 std::bit_or。

#include <iostream>     
#include <functional>   
#include <numeric>      
#include <iterator>     

int main () {
   int flags[] = {10,20,40,80,160,320,640,1280};
   int acc = std::accumulate (flags, std::end(flags), 0, std::bit_or<int>());
   std::cout << "accumulated: " << acc << '\n';
   return 0;
}

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

accumulated: 2046     
functional.htm
广告