Codewarrior帮助文件Codewarrior帮助文件.pdf

  1. 1、本文档共25页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Codewarrior帮助文件Codewarrior帮助文件

《单片机技术初步实践》帮助文档  Codewarrior 帮助文件 2008 4 1  《单片机技术初步实践》帮助文档  一、C 语言语法常见问题及修改提示 1. C1000: Illegal identifier list in declaration 函数声明中非法的标识符列表  Description  A function prototype declaration had formal parameter names, but no types were provided for the  parameters.  在函数声明时,使用了形式参数的名称,而不是参数的类型  Example  char f(i);  Tips  Declare the types for the parameters.  使用参数的形式来声明函数 如  char f(unsigned char)  2. C1004: Redefinition of storage class 存储类型的重复定义  Description  A declaration contains more than one storage class.  一个定义是用了一个以上的存储类型的定义  Example  staticstaticchar i;  Tips  Declare only one storage class per item.  只需定义一次存储类型 如  static char i;  3. C1005: Illegal storage class 非法使用的存储类型  Description  A declaration contains an illegal storage class.  变量定义时使用了不允许使用的存储类型  Example  auto unsigned char i; // ‘auto’ illegal for global variables  Tips  Apply a correct combination of storage classes.  使用正取的存储类型定义,如上例中,若 i 为全局变量则不能用 auto来声明。 4. C1007: Type specifier mismatch 类型区分符不匹配  Description  The type declaration is wrong.  数据类型定义错误  Example  unsigned char char i;  Tips  Do not use an illegal type chain.  使用正确的数据类型定义 如例应当改为  char i  5. C1016: Parameter redeclaration not permitted 参数不能重复定义 [ERROR] 2  《单片机技术初步实践》帮助文档  Description A parameter object was declared with the same name as another parameter object of the same function. 在一个函数中,反复定义一个参数名 Example void f(unsigned char i, unsigned char i) Tips Choose another na

您可能关注的文档

文档评论(0)

pfenejiarz + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档