当前位置: 编程技术>c/c++/嵌入式
解析一个有关sizeof用法的题目--sizeof(i++)
来源: 互联网 发布时间:2014-10-17
本文导语: 代码如下: #include int main() { int i; i = 10; printf("%dn", i); printf("%dn", sizeof(i++)); printf("%dn", i); return 0; }这三行输出应该是什么?答案是:10410第三个为什么不是11? i为什么没有自增?请看C++标准;5.3.3 sizeofThe sizeof operat...
代码如下:
#include
int main()
{
int i;
i = 10;
printf("%dn", i);
printf("%dn", sizeof(i++));
printf("%dn", i);
return 0;
}
这三行输出应该是什么?
答案是:
10
4
10
第三个为什么不是11? i为什么没有自增?
请看C++标准;
5.3.3 sizeof
The sizeof operator yields the number of bytes in the object representation of its operand. The operand is either an expression, which is an unevaluated operand (Clause 5), or a parenthesized type-id.
也就是说,如果sizeof的操作数是一个表达式的话,这个表达式时不会被计算的。
sizeof当预处理看就行了,它后面括号里的东西,根本不求值,只根据C的一堆规则判断结果类型,然后返回结果类型的大小
另外一个操作符typeid也是如此。