我正在尝试通过使用指针来修改作为参数传递的结构,但我无法使其正常工作。我不能只返回结构,因为函数必须返回一个整数。如何修改函数中的结构?这是我到目前为止所做的:
typedef enum {TYPE1, TYPE2, TYPE3} types;
typedef struct {
types type;
int act_quantity;
int reorder_threshold;
char note[100];
}elem;
int update_article(elem *article, int sold)
{
if(*article.act_quantity >= sold)
{
article.act_quantity = article.act_quantity - sold;
if(article.act_quantity < article.act_quantity)
{
strcpy(article.note, "to reorder");
return -1;
}
else
return 0;
}
else if(article.act_quantity < venduto)
{
strcpy(*article.note, "act_quantity insufficient");
return -2;
}
}
我在尝试修改结构的所有行中收到此错误:“错误:对成员的请求:'act_quantity' in something not a structure or union'”。
编辑:我用过“。” 而不是“->”。我现在修好了。它仍然给我一个错误:“一元'*'的无效类型参数(有'int')”