C #define macros

2019-01-28 10:00发布

Here is what i have and I wonder how this works and what it actually does.

#define NUM 5
#define FTIMES(x)(x*5)

int main(void) {
    int j = 1;
    printf("%d %d\n", FTIMES(j+5), FTIMES((j+5)));
}

It produces two integers: 26 and 30.

How does it do that?

7条回答
闹够了就滚
2楼-- · 2019-01-28 10:18

the preprocessor substitutes all NUM ocurrences in the code with 5, and all the FTIMES(x) with x * 5. The compiler then compiles the code.

Its just text substitution.

查看更多
\"骚年 ilove
3楼-- · 2019-01-28 10:21

And if you want to fix it:

#define FTIMES(x) ((x) * 5)
查看更多
太酷不给撩
4楼-- · 2019-01-28 10:23

Since it hasn't been mentioned yet, the way to fix this problem is to do the following:

#define FTIMES(x) ((x)*5)

The parentheses around x in the macro expansion prevent the operator associativity problem.

查看更多
贼婆χ
5楼-- · 2019-01-28 10:24

The reason this happens is because your macro expands the print to:

printf("%d %d\n", j+5*5, (j+5)*5);

Meaning:

1+5*5 and (1+5)*5
查看更多
趁早两清
6楼-- · 2019-01-28 10:26

Order of operations.

FTIMES(j+5) where j=1 evaluates to:

1+5*5

Which is:

25+1

=26

By making FTIMES((j+5)) you've changed it to:

(1+5)*5

6*5

30

查看更多
放我归山
7楼-- · 2019-01-28 10:37

The compiler pre-process simply does a substitution of FTIMES wherever it sees it, and then compiles the code. So in reality, the code that the compiler sees is this:

#define NUM 5
#define FTIMES(x)(x*5)

int main(void)
{

    int j = 1;

    printf("%d %d\n", j+5*5,(j+5)*5);
}

Then, taking operator preference into account, you can see why you get 26 and 30.

查看更多
登录 后发表回答