免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2850 | 回复: 10
打印 上一主题 下一主题

关于sizeof,下面程序谁能解释一下为什么? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-11-08 20:32 |只看该作者 |倒序浏览
#include <iostream>
#include <string>
using namespace std;
int main()
{
        int iValue = 5;
        unsigned char uchValue = 255;
        int iLen = sizeof((iValue = uchValue + iValue));
        cout << iValue << endl;
        return 0;
}

上面这段程序,输出的iValue的值你认为是什么呢?但是我实际输出的值是5,谁能解释一下为什么,谢谢了.

论坛徽章:
0
2 [报告]
发表于 2009-11-08 20:50 |只看该作者
ISO14882, 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 not evaluated, or a parenthesized type-id. The sizeof operator shall not
be applied to an expression that has function or incomplete type, or to an enumeration type before all its
enumerators have been declared, or to the parenthesized name of such types, or to an lvalue that designates
a bit-field.

论坛徽章:
0
3 [报告]
发表于 2009-11-09 14:16 |只看该作者
原帖由 tyc611 于 2009-11-8 20:50 发表
ISO14882, 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 not evaluated, or a parenthesize ...


楼上强
saviola1127 该用户已被删除
4 [报告]
发表于 2009-11-09 16:10 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
5 [报告]
发表于 2009-11-09 16:57 |只看该作者
2楼的回答让我想起低俗小说中那个黑人大声背诵圣经的片段~

论坛徽章:
0
6 [报告]
发表于 2009-11-09 21:45 |只看该作者
这个我觉得是作用域的问题,sizeof是库函数 不是操作符
调用sizeof((iValue = uchValue + iValue));和使用fun((iValue = uchValue + iValue));属于传值调用,对主函数中的ivalue没有影响

论坛徽章:
0
7 [报告]
发表于 2009-11-09 21:52 |只看该作者
2楼正解
这问题以前讨论过,有印象

论坛徽章:
0
8 [报告]
发表于 2009-11-09 22:29 |只看该作者
为什么要这样用了,有点想不明白!

论坛徽章:
0
9 [报告]
发表于 2009-11-10 16:17 |只看该作者
个人理解 sizeof() 为编译期的操作符 编译器会把sizeof()里的表达式转换成一个常量 所以他对像这种iValue = uchValue + iValue 表达式只是取左值作为参考 等效于 sizeof(iValue) .

本人菜鸟,弱有错误请大侠指正.

论坛徽章:
0
10 [报告]
发表于 2009-11-10 16:22 |只看该作者

回复 #6 虑而后能得 的帖子

c 中sizeof() 为操作符
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP