最常見(jiàn)的20種VC 編譯錯(cuò)誤信息
- 發(fā)布于:2024-01-04
- 共 202 人圍觀
尋找預(yù)編譯頭文件路徑時(shí)遇到了不該遇到的文件尾。(一般是沒(méi)有#include "stdafx.h")
2、fatal error C1083: Cannot open include file: 'R…….h': No such file or directory
不能打開(kāi)包含文件“R…….h”:沒(méi)有這樣的文件或目錄。
3、error C2011: 'C……': 'class' type redefinition
類(lèi)“C……”重定義。
4、error C2018: unknown character '0xa3'
不認(rèn)識(shí)的字符'0xa3'。(一般是漢字或中文標(biāo)點(diǎn)符號(hào))
5、error C2057: expected constant expression
希望是常量表達(dá)式。(一般出現(xiàn)在switch語(yǔ)句的case分支中)
6、error C2065: 'IDD_MYDIALOG' : undeclared identifier
“IDD_MYDIALOG”:未聲明過(guò)的標(biāo)識(shí)符。
7、error C2082: redefinition of formal parameter 'bReset'
函數(shù)參數(shù)“bReset”在函數(shù)體中重定義。
8、error C2143: syntax error: missing ':' before '{'
句法錯(cuò)誤:“{”前缺少“;”。
9、error C2146: syntax error : missing ';' before identifier 'dc'
句法錯(cuò)誤:在“dc”前丟了“;”。
10、error C2196: case value '69' already used
值69已經(jīng)用過(guò)。(一般出現(xiàn)在switch語(yǔ)句的case分支中)
11、error C2509: 'OnTimer' : member function not declared in 'CHelloView'
成員函數(shù)“OnTimer”沒(méi)有在“CHelloView”中聲明。
12、error C2511: 'reset': overloaded member function 'void (int)' not found in 'B'
重載的函數(shù)“void reset(int)”在類(lèi)“B”中找不到。
13、error C2555: 'B::f1': overriding virtual function differs from 'A::f1' only by return type or calling convention
類(lèi)B對(duì)類(lèi)A中同名函數(shù)f1的重載僅根據(jù)返回值或調(diào)用約定上的區(qū)別。
14、error C2660: 'SetTimer' : function does not take 2 parameters
“SetTimer”函數(shù)不傳遞2個(gè)參數(shù)。
15、warning C4035: 'f……': no return value
“f……”的return語(yǔ)句沒(méi)有返回值。
16、warning C4553: '= =' : operator has no effect; did you intend '='?
沒(méi)有效果的運(yùn)算符“= =”;是否改為“=”?
17、warning C4700: local variable 'bReset' used without having been initialized
局部變量“bReset”沒(méi)有初始化就使用。
18、error C4716: 'CMyApp::InitInstance' : must return a value
“CMyApp::InitInstance”函數(shù)必須返回一個(gè)值。
19、LINK : fatal error LNK1168: cannot open Debug/P1.exe for writing
連接錯(cuò)誤:不能打開(kāi)P1.exe文件,以改寫(xiě)內(nèi)容。(一般是P1.Exe還在運(yùn)行,未關(guān)閉)
20、error LNK2001: unresolved external symbol "public: virtual _ _thiscall C……::~C……(void)"
連接時(shí)發(fā)現(xiàn)沒(méi)有實(shí)現(xiàn)的外部符號(hào)(變量、函數(shù)等)。
轉(zhuǎn)載請(qǐng)說(shuō)明出處:六百號(hào)技術(shù) - SEO優(yōu)化,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)絡(luò)編程,軟件技巧,網(wǎng)絡(luò)知識(shí),系統(tǒng)技術(shù) ? 最常見(jiàn)的20種VC 編譯錯(cuò)誤信息
標(biāo)簽: