共用方式為


_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 
);

參數

  • value
    旋轉的值。

  • shift
    移動的位元數。

傳回值

旋轉的值。 不會回傳錯誤。

備註

_rotl_rotr 函式。 shift 位元旋轉不帶正負號的 _rotl 旋轉值向左。 _rotr 旋轉值向右。 兩個函式包裝位元旋轉 結尾對其他結尾。

需求

常式

必要的標頭

_rotl, _rotl64

<stdlib.h>

_rotr, _rotr64

<stdlib.h>

如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility)

程式庫

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