std::rotr
来自 cppreference.com
定义在头文件 <bit> 中 |
||
template< class T > constexpr T rotr( T x, int s ) noexcept; |
(自 C++20 起) | |
计算将 x 的值按位右循环移位 s 个位置的结果。此操作也称为右 循环移位。
形式上,设 N
为 std::numeric_limits<T>::digits,r
为 s % N。
- 如果
r
为 0,则返回 x; - 如果
r
为正数,则返回 (x >> r) | (x << (N - r)); - 如果
r
为负数,则返回 std::rotl(x, -r)。
仅当 T
为无符号整数类型(即,unsigned char、unsigned short、unsigned int、unsigned long、unsigned long long 或扩展无符号整数类型)时,此重载才参与重载解析。
内容 |
[编辑] 参数
x | - | 无符号整数类型的值 |
s | - | 移位的位数 |
[编辑] 返回值
将 x 按位右循环移位 s 个位置的结果。
[编辑] 说明
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_bitops |
201907L | (C++20) | 位操作 |
[编辑] 示例
运行此代码
#include <bit> #include <bitset> #include <cstdint> #include <iostream> int main() { const std::uint8_t i = 0b00011101; std::cout << "i = " << std::bitset<8>(i) << '\n'; std::cout << "rotr(i,0) = " << std::bitset<8>(std::rotr(i, 0)) << '\n'; std::cout << "rotr(i,1) = " << std::bitset<8>(std::rotr(i, 1)) << '\n'; std::cout << "rotr(i,9) = " << std::bitset<8>(std::rotr(i, 9)) << '\n'; std::cout << "rotr(i,-1) = " << std::bitset<8>(std::rotr(i, -1)) << '\n'; }
输出
i = 00011101 rotr(i,0) = 00011101 rotr(i,1) = 10001110 rotr(i,9) = 10001110 rotr(i,-1) = 00111010
[编辑] 另请参阅
(C++20) |
计算按位左循环移位的结果 (函数模板) |
执行二进制左移和右移 ( std::bitset<N> 的公有成员函数) |