为什么“a”的输出是是-80?

发布于 2024-08-26 14:03:03 字数 338 浏览 8 评论 0原文

#include<stdio.h>
#include<conio.h>
#define ABC 20
#define XYZ 10
#define XXX ABC - XYZ

void main()
{
    int     a;

    a = XXX * 10;

    printf("\n %d \n", a);

    getch();
}

我认为输出应该是 100,但是当我看到结果时,我发现输出为 -80。当我将括号设置为 #define XXX (ABC-XYZ) 时,我得到的输出为 100,但如果没有括号,我得到的输出为 -80。

#include<stdio.h>
#include<conio.h>
#define ABC 20
#define XYZ 10
#define XXX ABC - XYZ

void main()
{
    int     a;

    a = XXX * 10;

    printf("\n %d \n", a);

    getch();
}

I thought the output should be 100 but when I saw the result I found output as -80. When I put brackets as #define XXX (ABC-XYZ) then I get output as 100 but without brackets I get output as -80.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

亣腦蒛氧 2024-09-02 14:03:03

预处理器是一个愚蠢的野兽。它在纯粹的文本级别上工作,而不考虑它在语义上对代码所做的事情。让我们看看它在这种情况下做了什么:

a = XXX * 10;

becomes

a = ABC - XYZ * 10;

成为

a = 20 - 10 * 10;

which 显然是-80

可能的意图是,

#define XXX (ABC - XYZ)

这就是宏被认为是邪恶的原因之一。

The preprocessor is a dumb beast. It works on a purely textual level, without regard for what it's doing to the code semantically. Let's see what it does in this case:

a = XXX * 10;

becomes

a = ABC - XYZ * 10;

which becomes

a = 20 - 10 * 10;

which is, obviously, -80.

What was probably intended was

#define XXX (ABC - XYZ)

This is one reason why macros are considered evil.

扶醉桌前 2024-09-02 14:03:03
a = XXX * 10;

编译前将更改为以下内容:

a = 20 - 10 * 10;

其计算结果为 -80

a = XXX * 10;

will change to the following before compilation:

a = 20 - 10 * 10;

which evaluates to -80

随风而去 2024-09-02 14:03:03

是这样计算的,

20-10*10

在宏XXX中使用大括号。

#define XXX (ABC-XYZ)

It is calculating like this ,

20-10*10

Use braces in the macro XXX.

#define XXX (ABC-XYZ)
迟到的我 2024-09-02 14:03:03

这里XXX被替换为ABC-XYZ所以它
看起来像下面这样

20 - 10 * 10

所以输出是-80

Here XXX is replaced by ABC-XYZ So it
is look like the follow

20 - 10 * 10

So the output is -80

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