C++ 函数库 - bit_xor



描述

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

声明

以下是 std::bit_xor 的声明。

template <class T> struct bit_xor;

C++11

template <class T> struct bit_xor;

参数

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

返回值

异常

noexcep − 它不抛出任何异常。

示例

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

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

int main () {
   int flags[] = {10,20,30,40,50,60,70,80,90,100};
   int acc = std::accumulate (flags, std::end(flags), 0, std::bit_xor<int>());
   std::cout << "xor: " << acc << '\n';
   return 0;
}

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

xor: 14  
functional.htm
广告