gpt4 book ai didi

c - struct/constructor/pointer - C 编程语言

转载 作者:行者123 更新时间:2023-12-04 10:34:35 24 4
gpt4 key购买 nike

我有一个问题,涉及创建封装输入缓冲区的数据结构。我的问题目前与 malloc 有关,但我觉得它实际上可能是某个指针定义了我出错了

我必须创建一个构造函数,该构造函数采用 10x10 8 位二维数组并创建它的副本进行处理。

它必须使用以下函数声明和结构定义。

file - SP.h
typedef struct SP_struct {
uint8_t * base_of_buffer;
uint16_t width;
uint16_t height;
uint16_t x0;
uint16_t y0;
uint8_t pixel_size;
} SP_struct;

SP_struct* SP_create (const unsigned char* s, int width, int height); // constructor

#include "pixel_sum.h"
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>

int main()
{
uint16_t i = 0;
unsigned char dummy_array[4][4] = {0,1,0,1,
1,2,1,0,
0,1,4,1,
1,0,1,0};

printf( "\nMain loop\n" );
printf( "*dummy_array = %d\n",*dummy_array);

struct SP_struct *SP_struct_ptr = SP_create(* dummy_array, 4, 4);
struct SP_struct *SP_struct_ptr2 = SP_create(* dummy_array, 4, 4); // if this line is un commented it works fine
printf("FINISHED MAIN LOOP");

}

SP_struct* SP_create(const unsigned char* s, int width, int height){
uint16_t i = 0;
printf( "--------------SP_create\n" );
printf( "*s = %d\n",*s); // This gets value
printf( "s = %d\n",s); // This gets value

// printf( "%d\n",width);
// printf( "%d\n",height);

SP_struct *p = malloc(width*height*sizeof(p->pixel_size));;
printf( "p = %d\n",p); // This gets value
printf( "&p = %d\n",&p); // This gets value
p->x0 = 12;
p->y0 = 12;
//p
printf( "p->base_of_buffer = %d\n",p->base_of_buffer);
printf( "&p->x0 = %d\n",&p->x0);
printf( "p->x0 = %d\n",p->x0);
printf( "p->y0 = %d\n",p->y0);
for(i = 0; i< width*height; i++) {
p->base_of_buffer[0+i] = s[i];
//printf( "%d . ",i);
printf( "%d\n",p->base_of_buffer[0+i]);
}

return p ;
}

当我用 SP_struct_ptr2 注释掉的行运行它时,它运行良好并给我一个指针和正确的地址.. enter image description here

但是当我在 SP_struct_ptr2 行中评论时,我得到.. enter image description here

有任何想法吗?我在 Windows 64 位上使用 gcc 6.3.0,这些是编译中的唯一文件。

最佳答案

您需要分配SP_structbase_of_buffer分别地。您的代码可能应该是这样的:

SP_struct*     SP_create(const unsigned char* s, int width, int height){
...
SP_struct *p = malloc(sizeof(*p));
if (p) {
p->pixel_size = PIXEL_SIZE;
p->base_of_buffer = malloc(width*height*sizeof(p->pixel_size)*sizeof(*p->base_of_buffer));
...
}
return p;
}

关于c - struct/constructor/pointer - C 编程语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60249308/

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