最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

bit manipulation - 32 bit unsigned JavaScript bitwise operation is one short - Stack Overflow

programmeradmin1浏览0评论

Why does

((255<<24)|(255<<16)|(255<<8)|255)>>>0

equals 4294967295 when

Math.pow(256,4)

equals 4294967296?

Notice that the bitwise operation is one short. Why is this?!

Why does

((255<<24)|(255<<16)|(255<<8)|255)>>>0

equals 4294967295 when

Math.pow(256,4)

equals 4294967296?

Notice that the bitwise operation is one short. Why is this?!

Share Improve this question edited Sep 16, 2012 at 2:18 Peter Mortensen 31.6k22 gold badges110 silver badges133 bronze badges asked Sep 12, 2011 at 20:24 talentedmrjonestalentedmrjones 8,1711 gold badge28 silver badges27 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

Because zero takes up a binary value.

4294967296 is the number of "slots" that 32 bits gives you, 4294967295 is the decimal number occupying highest slot.

Because the first one is 2^32-1, and the second one is 2^32? You know that with the first "statement" you are setting to 1 the first 32 bits of a value, right?

In 32 bits, the first bit is "valued" 1, the second 2, the third 4... The 32th 2147483648. Their sum is 4294967295 :-)

Let's make an example with 8 bits.

Math.pow(256,1) == 256

1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 = 255.
发布评论

评论列表(0)

  1. 暂无评论