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