类模板
<<functional>

std::bit_xor

template <class T> struct bit_xor;
按位异或函数对象类
当其两个参数(由 ^ 运算符返回)执行按位“异或”操作时,其调用将返回该操作结果的二元函数对象类。

泛指,函数对象 是一个类的实例,该类定义了成员函数operator()。这个成员函数允许对象以与函数调用相同的语法使用。

它的定义与以下行为相同:

1
2
3
4
5
6
template <class T> struct bit_xor {
  T operator() (const T& x, const T& y) const {return x^y;}
  typedef T first_argument_type;
  typedef T second_argument_type;
  typedef T result_type;
};

此类对象可用于标准算法,例如 transformaccumulate

模板参数

T
函数调用参数和返回值的类型。
类型应支持操作(operator^)。

成员类型

成员类型定义说明
first_argument_typeT成员 operator() 的第一个参数的类型
second_argument_typeT成员 operator() 的第二个参数的类型
result_typeT成员 operator() 返回的类型

成员函数

T operator() (const T& x, const T& y)
返回其参数的按位“异或”(x^y)的成员函数。

示例

1
2
3
4
5
6
7
8
9
10
11
12
// bit_xor example
#include <iostream>     // std::cout
#include <functional>   // std::bit_xor
#include <algorithm>    // std::accumulate
#include <iterator>     // std::end

int main () {
  int flags[] = {1,2,3,4,5,6,7,8,9,10};
  int acc = std::accumulate (flags, std::end(flags), 0, std::bit_xor<int>());
  std::cout << "xor: " << acc << '\n';
  return 0;
}

输出

xor: 11


另见