비트 이동은 값을 래핑합니다.
2912 단어 c
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
int main () {
for (uint32_t shift = 0; shift < 35; shift++) {
uint32_t u32 = UINT32_MAX >> shift;
printf ("1 >> %02" PRIu32 " = %" PRIu32 "\n", shift, u32);
}
}
이 예는 실행될 수 있습니다here.
UINT32_MAX >> 32
가 0
가 될 것으로 예상했습니다. 그러나 출력은 동의하지 않습니다.1 >> 00 = 4294967295
1 >> 01 = 2147483647
1 >> 02 = 1073741823
1 >> 03 = 536870911
1 >> 04 = 268435455
1 >> 05 = 134217727
1 >> 06 = 67108863
1 >> 07 = 33554431
1 >> 08 = 16777215
1 >> 09 = 8388607
1 >> 10 = 4194303
1 >> 11 = 2097151
1 >> 12 = 1048575
1 >> 13 = 524287
1 >> 14 = 262143
1 >> 15 = 131071
1 >> 16 = 65535
1 >> 17 = 32767
1 >> 18 = 16383
1 >> 19 = 8191
1 >> 20 = 4095
1 >> 21 = 2047
1 >> 22 = 1023
1 >> 23 = 511
1 >> 24 = 255
1 >> 25 = 127
1 >> 26 = 63
1 >> 27 = 31
1 >> 28 = 15
1 >> 29 = 7
1 >> 30 = 3
1 >> 31 = 1
1 >> 32 = 4294967295
1 >> 33 = 2147483647
1 >> 34 = 1073741823
1 >> 32
는 왼쪽 시프트의 C 표준6.5.7에 의해 정의되지 않은 동작입니다.If the value of the right operand is negative or is greater than or equal to the width of the promoted left operand, the behavior is undefined.
까지
Reference
이 문제에 관하여(비트 이동은 값을 래핑합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kevinalbs/bit-shift-wraps-values-33f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)