码迷,mamicode.com
首页 > 其他好文 > 详细

error: two or more data types in declaration specifiers原因及解决方法

时间:2014-11-07 11:04:02      阅读:573      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   strong   文件   div   on   bs   

编译时报错:

 

  1. error: <strong>two or more data types in declaration specifiers</strong> 
error: two or more data types in declaration specifiers

原因可能有两个:

 

1. 少了一个分号";",比如定义一个结构体时,在最后忘了加分号。

解决方法:加上分号即可。

2. 重复定义,比如:a.h文件中有如下定义:

 

  1. #define bool char 
#define bool char

b.h文件中有如下定义:

 

 

  1. typedef char bool; 
typedef char bool;

然后在main.c中同时包含a.h和b.h:

  1. #include "a.h" 
  2. #include "b.h" 
#include "a.h"
#include "b.h"

此时,就会报这个错。

解决方法:去掉其中一处定义。

error: two or more data types in declaration specifiers原因及解决方法

标签:style   io   ar   sp   strong   文件   div   on   bs   

原文地址:http://www.cnblogs.com/qunxuan/p/4080713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!