_rotl、_rotl64、_rotr、_rotr64

旋转位到左边 (_rotl) 右侧或 (_rotr)。

unsigned int _rotl( 
   unsigned int value, 
   int shift  
); 
unsigned __int64 _rotl64( 
   unsigned __int64 value,  
   int shift 
); 
unsigned int _rotr( 
   unsigned int value, 
   int shift  
); 
unsigned __int64 _rotr64( 
   unsigned __int64 value, 
   int shift 
);

参数


  • 将旋转的值。

  • shift
    移动位的数目。

返回值

旋转的值。 无错误返回。

备注

_rotl_rotr 函数。shift 旋转位无符号 _rotl 旋转值。 _rotr 旋转值权限。 两位包装函数旋转 结束到另一端。

要求

例程

必需的标头

_rotl,_rotl64

<stdlib.h>

_rotr,_rotr64

<stdlib.h>

有关更多兼容性信息,请参见“简介”中的兼容性

C 运行时库的所有版本。

示例

// crt_rot.c
/* This program shifts values to rotate an integer.
 */

#include <stdlib.h>
#include <stdio.h>

int main( void )
{
   unsigned val = 0x0fd93;
   __int64 val2 = 0x0101010101010101;

   printf( "0x%4.4x rotated left three times is 0x%4.4x\n", 
           val, _rotl( val, 3 ) );
   printf( "0x%4.4x rotated right four times is 0x%4.4x\n", 
           val, _rotr( val, 4 ) );

   printf( "%I64x rotated left three times is %I64x\n",
           val2, _rotl64( val2, 3 ) );
   printf( "%I64x rotated right four times is %I64x\n", 
           val2, _rotr64( val2, 4 ) );
}

Output

0xfd93 rotated left three times is 0x7ec98
0xfd93 rotated right four times is 0x30000fd9
101010101010101 rotated left three times is 808080808080808
101010101010101 rotated right four times is 1010101010101010

.NET Framework 等效项

不适用。若要调用标准 C 函数,请使用 PInvoke。有关更多信息,请参见平台调用示例

请参见

参考

浮点支持

_lrotl、_lrotr