Why are Hexadecimal Prefixed as 0x and not anything else? I understand the usage of prefix but I dont understand the significance of 0x.
|
|
Short story: The Long story: In the 60's, the prevalent programming number systems were decimal and octal — mainframes had 12, 24 or 36 bits per byte, which is nicely divisible by 3 = log2(8). The BCPL language used the syntax
When C was created from B, the need for hexadecimal numbers arose (the PDP-11 had 16-bit words) and all of the points above were still valid. Since octals were still needed for other machines, C# is a descendant of C, so it inherits the syntax. |
|||||||||
|
|
Note: I don't know the correct answer, but the below is just my personal speculation! As has been mentioned a 0 before a number means it's octal:
Imagine needing to come up with a system to denote hexadecimal numbers, and note we're working in a C style environment. How about ending with h like assembly? Unfortunately you can't - it would allow you to make tokens which are valid identifiers (eg. you could name a variable the same thing) which would make for some nasty ambiguities.
You can't lead with a character for the same reason:
Using a hash was probably thrown out because it conflicts with the preprocessor:
In the end, for whatever reason, they decided to put an x after a leading 0 to denote hexadecimal. It is unambiguous since it still starts with a number character so can't be a valid identifier, and is probably based off the octal convention of a leading 0.
|
|||||||||||||||
|
|
It appears to have stemmed from a C convention: http://en.wikipedia.org/wiki/Hexadecimal#Representing_hexadecimal . |
|||||||||||||||||
|
|
I note that the guidelines say to actually answer the question and give supporting documentation. Looks like so far no one has been able to do that. Neither can I. That's because to answer the question, "WHY are hex numbers preceded by 0x", you have to be the guy who decided to do that or be in the meeting where some folks made that decision. Unless we can find that guy, we will go on guessing. My opinion is that some programmer needed to use hexadecimal numbers and just decided to use 0x because 0 was commonly used to indicate to parsers that the following was an integer constant and just simply used x. Or maybe x sounded like 'hex'. Alas, we will probably never know. |
|||
|
|