以零开头的数字有什么特别之处? [英] What is special about numbers starting with zero?

查看:18
本文介绍了以零开头的数字有什么特别之处?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个问题有点愚蠢,但对我来说很有趣)

This is kinda stupid question, but it's interesting for me )

这是我在 Visual Studio 2013 中得到的

This is what i get with visual studio 2013

int i = 07;     // i == 7
int i = 16;     // i == 16
int i = 00016;  // i == 14, why?
int i = 05016;  // i == 2574, wow )
int i = 08;     // compile error, compiler expects octal number...

如果数字以零开头并包含 8,则为编译错误.这是正常的吗?如果 00016 == 14,编译器究竟对起始零做了什么?

If number starts with zero and contains 8, it's compile error. Is this normal? And what exactly compiler does with starting zeros if 00016 == 14?

谢谢大家))

推荐答案

是的,这是意料之中的.

Yes, this is expected.

[C++11: 2.14.2/1]: 整数文字 是没有句点或指数部分的数字序列.一个整型文字可能有一个指定其基数的前缀和一个指定其类型的后缀.数字序列的词汇第一个数字是最重要的.十进制 整数文字(以十为底)以 0 以外的数字开头,并由一系列十进制数字组成.一个八进制整数文字(基数为八)以数字 0 开头,由八进制数字序列组成.22十六进制 整数文字(十六进制)以 0x 或 0X 开头,由一系列十六进制数字组成,其中包括十进制数字和字母 a 到 f 和 A​​ 到 F,十进制值为十到十五.[ 示例: 数字十二可以写成 12、014 或 0XC.——结束示例 ]

[C++11: 2.14.2/1]: An integer literal is a sequence of digits that has no period or exponent part. An integer literal may have a prefix that specifies its base and a suffix that specifies its type. The lexically first digit of the sequence of digits is the most significant. A decimal integer literal (base ten) begins with a digit other than 0 and consists of a sequence of decimal digits. An octal integer literal (base eight) begins with the digit 0 and consists of a sequence of octal digits.22 A hexadecimal integer literal (base sixteen) begins with 0x or 0X and consists of a sequence of hexadecimal digits, which include the decimal digits and the letters a through f and A through F with decimal values ten through fifteen. [ Example: the number twelve can be written 12, 014, or 0XC. —end example ]

22 数字 8 和 9 不是八进制数字.

这篇关于以零开头的数字有什么特别之处?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆