错误:在’*’标记之前预期’)’

前端之家收集整理的这篇文章主要介绍了错误:在’*’标记之前预期’)’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个包含文件(内存.h) @H_301_2@#ifndef MEMORY_H #define MEMORY_H #ifdef __cplusplus extern "C" { #endif typedef struct mmemory { int* cells; int* current_cell; int cells_number; } memory; void memory_init(memory* mymemory,int size); void step_left(memory* mymemory,int steps); void step_right(memory* mymemory,int steps); void cell_inc(memory* mymemory,int quantity); void print_cell(memory* mymemory); void get_char(memory* mymemory); #ifdef __cplusplus } #endif #endif /* MEMORY_H */

而这个实现文件(memory.c)

@H_301_2@#include <stdlib.h> #include "memory.h" void memory_init (memory* mymemory,int size) { mymemory->cells = (int*) malloc (sizeof (int) * size); mymemory->cells_number = size; mymemory->current_cell = (int*) ((mymemory->cells_number / 2) * sizeof (int)); } ... //other function definitions follow

当我尝试编译memory.c时,每个函数定义都会出现此错误

src/memory.c:5: error: expected ‘)’ before ‘*’ token

其中第5行是memory_init()的函数定义

有人可以告诉我为什么我收到此错误

解决方法

因为系统memory.h正在影响你的memory.h,导致#include成功而不声明你的类型.几个可能的修复:

>重命名您的文件 – 可能在任何情况下都是最好的,以减少潜在的混淆.>通过前缀子目录(例如,#include< myproj / memory.h>)包含您的文件.>将文件移动到与源文件相同的目录中,允许“包含在文件名中的#include优先规则”生效.>确保C预处理器包含路径选项,将项目标题路径放在系统标题路径之前.

猜你在找的C&C++相关文章