I've always wondered why leading zeroes (0) are used to represent octal numbers, instead of — for example — 0o. The use of 0o would be just as helpful, but would not cause as many problems as leading 0es (e.g. parseInt('08'); in JavaScript). What are the reason(s) behind this design choice?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
All modern languages import this convention from C, which imported it from B, which imported it from BCPL. Except BCPL used The designers of B tried to make the syntax very compact. I guess this is the reason they did not use a two-character prefix. |
||||
|
|
|
"0b" is often used for binary rather than for octal. The leading "0" is, I suspect for "O -ctal". If you know you are going to be parsing octal then use |
|||||
|
