C++ 函数库 - bit_and



描述

它是一个按位与函数对象类和二元函数对象类,其调用返回对其两个参数应用按位“与”运算的结果(如运算符 & 所返回的那样)。

声明

以下是 std::bit_and 的声明。

template <class T> struct bit_and;

C++11

template <class T> struct bit_and;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

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

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

int main () {
   int values[] = {1000,2000,3000,4000,5000};
   int masks[] = {0xf,0xf,0xf,255,255};
   int results[5];

   std::transform (values, std::end(values), masks, results, std::bit_and<int>());

   std::cout << "results:";
   for (const int& x: results)
      std::cout << ' ' << x;
   std::cout << '\n';

   return 0;
}

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

8 0 8 160 136    
functional.htm
广告