gcc(v4.1.2交叉编译器)整数提升问题
这是测试代码。
char ch = 0xff;
int i = ch;
printf("%d\n", i);
在 i386 gcc-4.4.5 中,输出为 -1。 但在powerpc-e300c3-linux-gnu-gcc-4.1.2(MPC8315交叉编译器)中,输出为255。
怎么了? 为什么gcc-4.1.2输出是255?
谢谢你的回答...
This is the test code.
char ch = 0xff;
int i = ch;
printf("%d\n", i);
In i386 gcc-4.4.5, the output is -1.
But in powerpc-e300c3-linux-gnu-gcc-4.1.2(MPC8315 cross-compiler), the output is 255.
What is wrong?
Why gcc-4.1.2 output is 255?
Thanks for your answer...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
char
是否有符号是由实现定义的。显然它在 x86 编译器上签名,在 PowerPC 编译器上未签名。
为了可移植性,只要您关心符号性,就可以使用
unsigned char
或signed char
。It is implementation-defined whether
char
is signed or unsigned.Apparently it is signed on your x86 compiler and unsigned on your PowerPC compiler.
For portability, use
unsigned char
orsigned char
wherever you care about the signedness.