Rule of Sign Extension

类别:编程语言 点击:0 评论:0 推荐:

Decreasing size of data

For unsigned numbers:
  All the bits being removed must be 0 !

For signed numbers:
  Bits being removed must be all 1's or 0's and the first bit not being removed must have the same value as the removed ones.

Increasing size of data

For unsigned numbers:
  All the new bits of the expanded number should be 0 !

For unsigned numbers:
  The new bits must be copies of the sign bit.

本文地址:http://com.8s8s.com/it/it25653.htm