1

代码(使用编译gcc -std=c99)...

#include <stdio.h>
#include <stdlib.h>

typedef int mytype[8][8];

int main(void)
{
    mytype CB;
    for (int r=0; r<8; r++) {
        for (int c=0; c<8; c++) {
            CB[r][c] = 5;
        }
    }

    mytype *CB2 = &CB;

    for (int r=0; r<8; r++) {
        for (int c=0; c<8; c++) {
            printf("%d ",*CB2[r][c]);
        }
        printf("\n");
    }

    return 0;
}

打印stdout错误的数据(只有第一行的数据是正确的),这些数据应该是 all 5。我发现,其他数组项的指针在内存中有所偏移,但我不明白为什么。

我希望目的很明显:CB在第一个循环中设置数组的内容,然后在第二个循环中打印出来。这只是模型 - 指针的东西在那里,因为我需要它。

我究竟做错了什么?

4

1 回答 1

13

运算符优先级意味着你需要改变

printf("%d ",*CB2[r][c]);

printf("%d ",(*CB2)[r][c]);

数组下标运算符[]的优先级高于指针取消引用运算符*,因此您的代码被评估为*(CB2[r][c])

于 2013-06-12T09:44:29.943 回答