gpt4 book ai didi

c - 如何将结构传递给 C 中的函数

转载 作者:太空宇宙 更新时间:2023-11-04 05:37:43 25 4
gpt4 key购买 nike

我写了一个由这些文件组成的 C 代码:main.ckernel.c。以下是文件:

main.c:

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

typedef struct{
float x;
float y;
float z;
} vect_xyz;

vect_xyz *coll_vcm1;

#include "kernel.c"
//==============================================================
int main(void){

int Np=10, i;
float xx = 1;
coll_vcm1=(vect_xyz*)malloc(Np*sizeof(vect_xyz));

for(i=0;i<Np;i++){
coll_vcm1[i].x = xx;
coll_vcm1[i].y = 2*xx;
coll_vcm1[i].z = 3*xx;
xx = xx + 1;
}

for(i=0;i<Np;i++){
collisione(coll_vcm1[i].x,i);
}

return 0;
}

kernel.c

void collisione(vect_xyz *coll_vcm1,int i){ 
printf("coll_vcm1[%d].x=%f\n",i,coll_vcm1[i].x);
}

这是生成文件:

CC=gcc
CFLAGS=-Wall
OBJS = main.o

all: eseguibile

eseguibile: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o eseguibile -lm

main.o: main.c kernel.c
$(CC) -c $(CFLAGS) main.c

clean:
rm -rf *.o eseguibile

(注意标签)。当我通过键入 make 运行它时,我收到此错误消息:

main.c: In function ‘main’:
main.c:30:7: error: incompatible type for argument 1 of ‘collisione’
collisione(coll_vcm1[i].x,i);
^
In file included from main.c:14:0:
kernel.c:1:6: note: expected ‘struct vect_xyz *’ but argument is of type ‘float’
void collisione(vect_xyz *coll_vcm1,int i){
^
make: *** [main.o] Error 1

当我调用函数 collisione() 时当然会发生错误,但我不明白为什么。我认为错误的另一件事是在 kernel.c 文件中;事实上,我认为编写 vect_xyz *coll_vcm1 是错误的,因为我没有指定索引 i

所以这是我的问题:- 我应该在 kernel.c 文件中写些什么,以便每次在 for 循环中打印结构的值?

PS:我想保持循环

for(i=0;i<Np;i++){
collisione(coll_vcm1[i].x,i);
}

kernel.c 文件之外。

最佳答案

你应该改变这个

collisione(coll_vcm1[i].x,i);

collisione(coll_vcm1, i);

你在数组中 i 位置传递 x 字段,而不是指向数组 coll_vcm1 的指针

另外,请注意 casting the return value from malloc()让你除其他外,重复你自己。

coll_vcm1=(vect_xyz*)malloc(Np*sizeof(vect_xyz));

可能只是

coll_vcm1 = malloc(Np * sizeof(vect_xyz));

你实际上应该做的是检查返回值,在错误时 malloc() 返回 NULL,所以

coll_vcm1 = malloc(Np * sizeof(vect_xyz));
if (coll_vcm1 == NULL)
tragedy_cannotAllocateMemory_DoNot_Continue();

最后花点时间格式化您的代码,以便其他人和您可以阅读并理解它。

关于c - 如何将结构传递给 C 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28585002/

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