gcc(v4.1.2交叉编译器)整数提升问题

发布于 2024-10-06 19:36:40 字数 267 浏览 2 评论 0原文

这是测试代码。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稳稳的幸福 2024-10-13 19:36:40

char 是否有符号是由实现定义的。

显然它在 x86 编译器上签名,在 PowerPC 编译器上未签名。

为了可移植性,只要您关心符号性,就可以使用 unsigned charsigned 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 or signed char wherever you care about the signedness.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文