資源描述:
《Visual_c++6.0常見(jiàn)錯(cuò)誤提示匯總》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、VisualC++6.0編譯錯(cuò)誤提示匯總1、fatalerrorC1010:unexpectedendoffilewhilelookingforprecompiledheaderdirective。尋找預(yù)編譯頭文件路徑時(shí)遇到了不該遇到的文件尾。(一般是沒(méi)有#include"stdafx.h")2、fatalerrorC1083:Cannotopenincludefile:'R…….h':Nosuchfileordirectory不能打開(kāi)包含文件“R…….h”:沒(méi)有這樣的文件或目錄。3、errorC2011:'C……':'class'typ
2、eredefinition類(lèi)“C……”重定義。4、errorC2018:unknowncharacter'0xa3'不認(rèn)識(shí)的字符'0xa3'。(一般是漢字或中文標(biāo)點(diǎn)符號(hào))5、errorC2057:expectedconstantexpression希望是常量表達(dá)式。(一般出現(xiàn)在switch語(yǔ)句的case分支中)6、errorC2065:'IDD_MYDIALOG':undeclaredidentifier“IDD_MYDIALOG”:未聲明過(guò)的標(biāo)識(shí)符。7、errorC2082:redefinitionofformalparameter'b
3、Reset'函數(shù)參數(shù)“bReset”在函數(shù)體中重定義。8、errorC2143:syntaxerror:missing':'before'{'句法錯(cuò)誤:“{”前缺少“;”。9、errorC2146:syntaxerror:missing';'beforeidentifier'dc'句法錯(cuò)誤:在“dc”前丟了“;”。10、errorC2196:casevalue'69'alreadyused值69已經(jīng)用過(guò)。(一般出現(xiàn)在switch語(yǔ)句的case分支中)11、errorC2509:'OnTimer':memberfunctionnotdecl
4、aredin'CHelloView'成員函數(shù)“OnTimer”沒(méi)有在“CHelloView”中聲明。12、errorC2511:'reset':overloadedmemberfunction'void(int)'notfoundin'B'重載的函數(shù)“voidreset(int)”在類(lèi)“B”中找不到。13、errorC2555:'B::f1':overridingvirtualfunctiondiffersfrom'A::f1'onlybyreturntypeorcallingconvention類(lèi)B對(duì)類(lèi)A中同名函數(shù)f1的重載僅根據(jù)返回值
5、或調(diào)用約定上的區(qū)別。14、errorC2660:'SetTimer':functiondoesnottake2parameters“SetTimer”函數(shù)不傳遞2個(gè)參數(shù)。15、warningC4035:'f……':noreturnvalue“f……”的return語(yǔ)句沒(méi)有返回值。16、warningC4553:'==':operatorhasnoeffect;didyouintend'='?沒(méi)有效果的運(yùn)算符“==”;是否改為“=”?17、warningC4700:localvariable'bReset'usedwithouthaving
6、beeninitialized局部變量“bReset”沒(méi)有初始化就使用。18、errorC4716:'CMyApp::InitInstance':mustreturnavalue“CMyApp::InitInstance”函數(shù)必須返回一個(gè)值。19、LINK:fatalerrorLNK1168:cannotopenDebug/P1.exeforwriting連接錯(cuò)誤:不能打開(kāi)P1.exe文件,以改寫(xiě)內(nèi)容。(一般是P1.Exe還在運(yùn)行,未關(guān)閉)20、errorLNK2001:unresolvedexternalsymbol"public:vi
7、rtual__thiscallC……::~C……(void)"連接時(shí)發(fā)現(xiàn)沒(méi)有實(shí)現(xiàn)的外部符號(hào)(變量、函數(shù)等)。21、functioncallmissingargumentlist調(diào)用函數(shù)的時(shí)候沒(méi)有給參數(shù)。22、memberfunctiondefinitionlookslikeactor,butnamedoesnotmatchenclosingclass成員函數(shù)聲明了但沒(méi)有使用23、unexpectedendoffilewhilelookingforprecompiledheaderdirective在尋找預(yù)編譯頭文件時(shí)文件意外結(jié)束,編譯不正
8、常終止可能造成這種情況!Ambiguousoperatorsneedparentheses-----------不明確的運(yùn)算需要用括號(hào)括起Ambiguoussymbol''xxx''-----