欢迎来到天天文库
浏览记录
ID:48530759
大小:41.50 KB
页数:13页
时间:2020-02-25
《C编译时常见的错误.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1、fatalerrorC1010:unexpectedendoffilewhilelookingforprecompiledheaderdirective。寻找预编译头文件路径时遇到了不该遇到的文件尾。(一般是没有#include"stdafx.h")2、fatalerrorC1083:Cannotopenincludefile:'R…….h':Nosuchfileordirectory不能打开包含文件“R…….h”:没有这样的文件或目录。3、errorC2011:'C……':'class'typeredefinition类“C……”重定义。4、err
2、orC2018:unknowncharacter'0xa3'不认识的字符'0xa3'。(一般是汉字或中文标点符号)5、errorC2057:expectedconstantexpression希望是常量表达式。(一般出现在switch语句的case分支中)6、errorC2065:'IDD_MYDIALOG':undeclaredidentifier“IDD_MYDIALOG”:未声明过的标识符。7、errorC2082:redefinitionofformalparameter'bReset'函数参数“bReset”在函数体中重定义。8、errorC2
3、143:syntaxerror:missing':'before'{'句法错误:“{”前缺少“;”。9、errorC2146:syntaxerror:missing';'beforeidentifier'dc'句法错误:在“dc”前丢了“;”。10、errorC2196:casevalue'69'alreadyused值69已经用过。(一般出现在switch语句的case分支中)11、errorC2509:'OnTimer':memberfunctionnotdeclaredin'CHelloView'成员函数“OnTimer”没有在“CHelloVie
4、w”中声明。12、errorC2511:'reset':overloadedmemberfunction'void(int)'notfoundin'B'重载的函数“voidreset(int)”在类“B”中找不到。13、errorC2555:'B::f1':overridingvirtualfunctiondiffersfrom'A::f1'onlybyreturntypeorcallingconvention类B对类A中同名函数f1的重载仅根据返回值或调用约定上的区别。14、errorC2660:'SetTimer':functiondoesnotta
5、ke2parameters“SetTimer”函数不传递2个参数。15、warningC4035:'f……':noreturnvalue“f……”的return语句没有返回值。16、warningC4553:'==':operatorhasnoeffect;didyouintend'='?没有效果的运算符“==”;是否改为“=”?17、warningC4700:localvariable'bReset'usedwithouthavingbeeninitialized局部变量“bReset”没有初始化就使用。18、errorC4716:'CMyApp::I
6、nitInstance':mustreturnavalue“CMyApp::InitInstance”函数必须返回一个值。19、LINK:fatalerrorLNK1168:cannotopenDebug/P1.exeforwriting连接错误:不能打开P1.exe文件,以改写内容。(一般是P1.Exe还在运行,未关闭)20、errorLNK2001:unresolvedexternalsymbol"public:virtual__thiscallC……::~C……(void)"连接时发现没有实现的外部符号(变量、函数等)。functioncallmi
7、ssingargumentlist调用函数的时候没有给参数。memberfunctiondefinitionlookslikeactor,butnamedoesnotmatchenclosingclass成员函数声明了但没有使用unexpectedendoffilewhilelookingforprecompiledheaderdirective在寻找预编译头文件时文件意外结束,编译不正常终止可能造成这种情况Ambiguousoperatorsneedparentheses不明确的运算,需要用括号括起来Ambiguoussymbol'xxx'不明确的符号
8、Argumentlistsyntaxerror参数表语法错误Arraybound
此文档下载收益归作者所有