Why use hex?

前端 未结 12 1960
你的背包
你的背包 2020-11-28 03:45

Hey! I was looking at this code at http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html

I noticed that in some situations they used hex numbers, like i

相关标签:
12条回答
  • 2020-11-28 03:48

    Sometimes the visual representation of values in HEX makes code more readable or understandable. For instance bitmasking or use of bits becomes non-obvious when looking at decimal representations of numbers.

    This can sometimes do with the amount of space a particular value type has to offer, so that may also play a role.

    A typical example might be in a binary setting, so instead of using decimal to show some values, we use binary.

    let's say an object had a non-exclusive set of properties that had values of either on or off (3 of them) - one way to represent the state of those properties is with 3 bits.

    valid representations are 0 through 7 in decimal, but that is not so obvious. more obvious is the binary representation:

    000, 001, 010, 011, 100, 101, 110, 111

    Also, some people are just very comfortable with hex. Note also that hard-coded magic numbers are just that and it is not all that important no matter numbering system to use

    I hope that helps.

    0 讨论(0)
  • 2020-11-28 03:56

    its a bit mask. Hex values make it easy to see the underlying binary representation. n & 0xffff0000 returns the top 16 bits of n. 0xffff0000 means "16 1s and 16 0s in binary"

    0x80 means "1000000", so you start with "00000001" and continue shifting that bit over to the left "0000010", "0000100", etc until "1000000"

    0 讨论(0)
  • 2020-11-28 04:00

    I find it maddening that the C family of languages have always supported octal and hex but not binary. I have long wished that they would add direct support for binary:

    int mask = 0b00001111;
    

    Many years/jobs ago, while working on a project that involved an enormous amount of bit-level math, I got fed up and generated a header file that contained defined constants for all possible binary values up to 8 bits:

    #define b0        (0x00)
    #define b1        (0x01)
    #define b00       (0x00)
    #define b01       (0x01)
    #define b10       (0x02)
    #define b11       (0x03)
    #define b000      (0x00)
    #define b001      (0x01)
    ...
    #define b11111110 (0xFE)
    #define b11111111 (0xFF)
    

    It has occasionally made certain bit-level code more readable.

    0 讨论(0)
  • 2020-11-28 04:05

    0xffff0000 is easy to understand that it's 16 times "1" and 16 times "0" in a 32 bit value, while 4294901760 is magic.

    0 讨论(0)
  • 2020-11-28 04:07

    To be more precise, hex and decimal, are all NUMBERS. The radix (base 10, 16, etc) are ways to present those numbers in a manner that is either clearer, or more convenient.

    When discussing "how many of something there are" we normally use decimal. When we are looking at addresses or bit patterns on computers, hex is usually preferred, because often the meaning of individual bytes might be important.

    Hex, (and octal) have the property that they are powers of two, so they map groupings of bit nicely. Hex maps 4 bits to one hex nibble (0-F), so a byte is stored in two nibbles (00-FF). Octal was popular on Digital Equipment (DEC) and other older machines, but one octal digit maps to three bits, so it doesn't cross byte boundaries as nicely.

    Overall, the choice of radix is a way to make your programming easier - use the one that matches the domain best.

    0 讨论(0)
  • 2020-11-28 04:08

    The single biggest use of hex is probably in embedded programming. Hex numbers are used to mask off individual bits in hardware registers, or split multiple numeric values packed into a single 8, 16, or 32-bit register.

    When specifying individual bit masks, a lot of people start out by:

    #define bit_0 1
    #define bit_1 2
    #define bit_2 4
    #define bit_3 8
    #define bit_4 16
    etc...
    

    After a while, they advance to:

    #define bit_0 0x01
    #define bit_1 0x02
    #define bit_2 0x04
    #define bit_3 0x08
    #define bit_4 0x10
    etc...
    

    Then they learn to cheat, and let the compiler generate the values as part of compile time optimization:

    #define bit_0 (1<<0)
    #define bit_1 (1<<1)
    #define bit_2 (1<<2)
    #define bit_3 (1<<3)
    #define bit_4 (1<<4)
    etc...
    
    0 讨论(0)
提交回复
热议问题