gpt4 book ai didi

c - 如何更改存储在结构体中的 VLA 中的值

转载 作者:行者123 更新时间:2023-11-30 17:05:21 26 4
gpt4 key购买 nike

我使用以下结构来使用隐写术对带有消息的 PPM 文件进行编码:

typedef struct{
char code[CODE_LENGTH];
COMMENT *commentPPM;
int width, height, max;
COLOR (*colorValues)[];
} PPM;

和颜色:

typedef struct{
unsigned char red, green, blue;
} COLOR;

及方法:

PPM *encode(char *text, PPM *img){

//tested
printf("entered encode\n");

PPM *newPPM;
newPPM = duplicate(img);
printf("duplicated ppm\n");

int x,y, currentChar, textLength;

textLength = strlen(text);
////

for(currentChar = x = y = 0; currentChar < textLength; currentChar++){
printf("the current character is %c\n", *(text+currentChar));
//between 1 and the width
x += (rand() % (newPPM->width -1)) + 1;
printf("generated %d for x\n",x);
if(x >= newPPM->width){
printf("%d is greater than width(%d)\n",x,newPPM->width);
x -= newPPM->width;
printf("%d is the new x\n", x);
y++;
printf("incremented y to be %d\n", y);
}
newPPM->colorValues[y][x].red = text[currentChar]; //error (1)
printf("changed the value of color[%d][%d].red, to be %d, which is %c\n",y,x, text[currentChar], text[currentChar]);
}

return newPPM;
}

如何访问(1)中看到的一维数组指针中的“red”?

编辑:我收到错误消息:“错误:无效使用具有未指定边界的数组 newPPM->colorValues[y][x].red = text[currentChar];"

编辑 2:我听说我无法访问

中的 colorValues 元素
typedef struct{
char code[CODE_LENGTH];
COMMENT *commentPPM;
int width, height, max;
COLOR (*colorValues)[];
} PPM;

因为它没有指定宽度,所以我无法确定偏移量。然而,我这只是一个指向灵活数组成员的指针,它被分配了一个类型

ppmFile->colorValues = getColors(fd, ppmFile->width, ppmFile->height);

COLOR (*getColors(FILE *fd, int width, int height))[]{

COLOR (*colors)[width] = (COLOR(*)[width]) malloc(sizeof(COLOR[height][width]));

int i,j;
for(i = 0; i < height; i++) {
for(j = 0; j < width; j++) {
fscanf(fd,"%d %d %d", &colors[i][j].red, &colors[i][j].green, &colors[i][j].blue);
}
}

return colors;
}

已指定宽度。因此,如果我理解正确,当我将其传递回存储在结构中时,我将“丢失”偏移量(宽度)。但是,当我在加密方法中时,我可以访问宽度、高度以及当前的 x 和 y 位置,当然有一种方法可以告诉编译器这个灵活的数组成员具有宽度的偏移量,我确实这样做了printColors 方法并且它工作得很好(见下文),为什么我不能告诉编译器存储在 newPPM->colorValues 中的值具有宽度偏移量?

void printColors(int width, int height, COLOR (*colors)[width]){
int n, j;
for(n = 0; n < height; n++) {
for(j = 0; j < width; j++) {
printf("%d %d %d\n", colors[n][j].red, colors[n][j].green, colors[n][j].blue);
}
}
}

有没有办法强制转换 newPPM->colorValues 来告诉它具有偏移宽度?就像我对 printColors 中的颜色所做的那样

最佳答案

您可能会收到如下错误:

prog.c:10:14: error: subscript of pointer to incomplete type 'struct foo []'
thing->foos[0][0].bar;
~~~~~~~~~~~^
1 error generated.

作为引用,上面是编译此代码的输出:

struct foo { int bar; };
struct baz {
struct foo (*foos)[];
};

int main () {
struct baz * thing;
thing->foos[0][0].bar;
return 0;
}

(Live)

编译器试图告诉您的是,它无法计算访问外部数组的后续元素所需的偏移量。原因是它不知道数组元素的大小(因为它们是不完整类型,缺少大小信息)。

基本上,它正在尝试计算(以下是伪语言,而不是 C)

thing + offset(foos) + 0 * sizeof(struct foo[]) + 0 * sizeof(struct foo) + offset(bar)

但它不能,因为它不知道sizeof(struct foo[])

这个问题的根源是你首先试图拥有一个指向可变长度数组的指针。将成员更改为

struct foo (*foos)[42];

通过给定数组圆顶大小来“解决”这个问题。

如果您想要一个 2D 数组,只需将其设为 1D,并附加所有内部数组即可。 (当然,这仅在它们大小相同时才有效,即如果您想要矩形二维数组)

struct foo * grid = malloc (sizeof (struct foo) * rows * columns);
// access using grid [c * rows + r]

关于c - 如何更改存储在结构体中的 VLA 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35362344/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com