描述
它是一个按位或函数对象类和二元函数对象类,其调用返回在其两个参数之间应用按位 "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
相关用法
- C# bit_xor用法及代码示例
- C# bit_and用法及代码示例
- C# Decimal.FromOACurrency()用法及代码示例
- C# Int32.CompareTo用法及代码示例
- C# UInt64.ToString()用法及代码示例
- C# Type.GetTypeHandle()用法及代码示例
- C# Uri.IsBaseOf()用法及代码示例
- C# String.ToUpperInvariant用法及代码示例
- C# File.Copy(String, String, Boolean)用法及代码示例
- C# Uri.IsHexEncoding()用法及代码示例
- C# Char.TryParse()用法及代码示例
- C# Math Cosh()用法及代码示例
- C# Int64.Equals用法及代码示例
- C# Convert.ToInt16(String, IFormatProvider)用法及代码示例
- C# DateTimeOffset.FromUnixTimeMilliseconds()用法及代码示例
- C# StringBuilder.ToString用法及代码示例
- C# DateTimeOffset.AddMinutes()用法及代码示例
- C# MathF.Log10()用法及代码示例
- C# TimeSpan Subtract()用法及代码示例
- C# Math.Floor()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Functional Library - bit_or。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。