導航:首頁 > 源碼編譯 > dc沒有編譯是什麼原因

dc沒有編譯是什麼原因

發布時間:2022-06-14 03:20:14

A. DEV-C++5.0總是顯示「源文件未編譯

dev 裡面。
main 函數,一定要給指定類型 int;
其實這個是個更好的規定。。
因為其他編譯器可以不寫,是他可以默認 為int型。

你ctrl + F9 下面編譯窗口不是會顯示 main() should return 『int』 這樣類似信息么?

B. cmd下無法編譯C++,我用的是DC

你可能沒裝編譯器吧

C. 急!用Notepad++寫完C程序無法編譯運行,怎麼解決

執行以下gcc -v命令
看看會不會列印gcc版本信息
如果還是提示gcc不是內部命令
說明gcc環境變數沒有配置正確

D. VC中:error C2065: 'dc' : undeclared identifier

書上可能是藉助了一個「棧」來完成相應的操作。而你調試時,並沒有創建一個與書上所用的「棧」相對應的「棧類」,但你卻直接使用了那個類的介面。
例如,stackpush()這個函數,應該是「棧類」的一個公有介面函數,用於將參數壓入棧,但是,你的調試程序里是否聲明並實現了這個「棧類」?肯定沒有吧!所以編譯器會給出連接錯誤,說這個函數沒有定義。

換句話說,你應該先聲明並實現一個「棧類」,明確介面函數,再拿來用。如果書上沒有寫明這個「棧類」到底是怎樣的類的話,那你就必須自己來實現了。這可不容易……

E. C語言編譯的問題

1、fatal error C1010: unexpected end of file while looking for precompiled header directive。

尋找預編譯頭文件路徑時遇到了不該遇到的文件尾。(一般是沒有#include "stdafx.h")

2、fatal error C1083: Cannot open include file: 'R…….h': No such file or directory

不能打開包含文件「R…….h」:沒有這樣的文件或目錄。

3、error C2011: 'C……': 'class' type redefinition

類「C……」重定義。

4、error C2018: unknown character '0xa3'

不認識的字元'0xa3'。(一般是漢字或中文標點符號)

5、error C2057: expected constant expression

希望是常量表達式。(一般出現在switch語句的case分支中)

6、error C2065: 'IDD_MYDIALOG' : undeclared identifier

「IDD_MYDIALOG」:未聲明過的標識符。

7、error C2082: redefinition of formal parameter 'bReset'

函數參數「bReset」在函數體中重定義。

8、error C2143: syntax error: missing ':' before '{'

句法錯誤:「{」前缺少「;」。

9、error C2146: syntax error : missing ';' before identifier 'dc'

句法錯誤:在「dc」前丟了「;」。

10、error C2196: case value '69' already used

值69已經用過。(一般出現在switch語句的case分支中)

11、error C2509: 'OnTimer' : member function not declared in 'CHelloView'

成員函數「OnTimer」沒有在「CHelloView」中聲明。

12、error C2511: 'reset': overloaded member function 'void (int)' not found in 'B'

重載的函數「void reset(int)」在類「B」中找不到。

13、error C2555: 'B::f1': overriding virtual function differs from 'A::f1' only by return type or calling convention

類B對類A中同名函數f1的重載僅根據返回值或調用約定上的區別。

14、error C2660: 'SetTimer' : function does not take 2 parameters

「SetTimer」函數不傳遞2個參數。

15、warning C4035: 'f……': no return value

「f……」的return語句沒有返回值。

16、warning C4553: '= =' : operator has no effect; did you intend '='?

沒有效果的運算符「= =」;是否改為「=」?

17、warning C4700: local variable 'bReset' used without having been initialized

局部變數「bReset」沒有初始化就使用。

18、error C4716: 'CMyApp::InitInstance' : must return a value

「CMyApp::InitInstance」函數必須返回一個值。

19、LINK : fatal error LNK1168: cannot open Debug/P1.exe for writing

連接錯誤:不能打開P1.exe文件,以改寫內容。(一般是P1.Exe還在運行,未關閉)

20、error LNK2001: unresolved external symbol "public: virtual _ _thiscall C……::~C……(void)"

連接時發現沒有實現的外部符號(變數、函數等)。

function call missing argument list 調用函數的時候沒有給參數。

member function definition looks like a ctor, but name does not match enclosing class 成員函數聲明了但沒有使用

unexpected end of file while looking for precompiled header directive 在尋找預編譯頭文件時文件意外結束,編譯不正常終止可能造成這種情況
希望對你能有所幫助。

F. cmd無法編譯C++,我用的是DC!!

cmd 是Windows 中的命令解釋程序,和編譯C++沒有半點關系,gcc只能完成C++程序的編譯過程,不能進行鏈接 ,需要用G++,但是gcc ,g++一般是在linux系統上用的,Windows上除了裝cygwin外(或者虛擬機裝linux系統)我沒有發現其他可以用它編譯代碼的方法啊!
你可以裝個cygwin 或者 虛擬機
直接點的可以裝個VS

G. C++無法編譯。我剛買的本子一個月前還可以正常編東西,昨天打開發現VC DC都無法編譯了。

編譯器有問題,重裝一下吧

H. 求助,C++編譯出錯

應該給出具體的錯誤,才能幫你分析錯誤的原因。
下滿是C++編譯時最容易出現的錯誤:
1、fatal error C1010: unexpected end of file while looking for precompiled header directive.
尋找預編譯頭文件路徑時遇到了不該遇到的文件尾。(一般是沒有#include "stdafx.h")
2、fatal error C1083: Cannot open include file: 'R……。h': No such file or directory
不能打開包含文件「R……。h」:沒有這樣的文件或目錄。 3、error C2011: 'C……': 'class' type redefinition 類「C……」重定義。
4、error C2018: unknown character '0xa3' 不認識的字元'0xa3'.(一般是漢字或中文標點符號) 5、error C2057: expected constant expression 希望是常量表達式。(一般出現在switch語句的case分支中) 6、error C2065: 'IDD_MYDIALOG' : undeclared identifier 「IDD_MYDIALOG」:未聲明過的標識符。
7、error C2082: redefinition of formal parameter 'bReset' 函數參數「bReset」在函數體中重定義。
8、error C2143: syntax error: missing ':' before '{' 句法錯誤:「{」前缺少「;」。
9、error C2146: syntax error : missing ';' before identifier 'dc'
句法錯誤:在「dc」前丟了「;」。
10、error C2196: case value '69' already used 值69已經用過。(一般出現在switch語句的case分支中)
11、error C2509: 'OnTimer' : member function not declared in 'CHelloView'
成員函數「OnTimer」沒有在「CHelloView」中聲明。
12、error C2511: 'reset': overloaded member function 'void (int)' not found in 'B'
重載的函數「void reset(int)」在類「B」中找不到。
13、error C2555: 'B::f1': overriding virtual function differs from 'A::f1' only by return type or calling convention void function(e,t){for(var n=t.getElementsByTagName("img"),a=+new Date,i=[],o=function(){this.removeEventListener&&this.removeEventListener("load",o,!1),i.push({img:this,time:+new Date})},s=0;s< n.length;s++)!function(){var e=n[s];e.addEventListener?!e.complete&&e.addEventListener("load",o,!1):e.attachEvent&&e.attachEvent("onreadystatechange",function(){"complete"==e.readyState&&o.call(e,o)})}();alog("speed.set",{fsItems:i,fs:a})}(window,document);
類B對類A中同名函數f1的重載僅根據返回值或調用約定上的區別。
14、error C2660: 'SetTimer' : function does not take 2 parameters

「SetTimer」函數不傳遞2個參數。
15、warning C4035: 'f……': no return value 「f……」的return語句沒有返回值。
16、warning C4553: '= =' : operator has no effect; did you intend '='?
沒有效果的運算符「= =」;是否改為「=」?
17、warning C4700: local variable 'bReset' used without having been initialized局部變數「bReset」沒有初始化就使用。
18、error C4716: 'CMyApp::InitInstance' : must return a value
「CMyApp::InitInstance」函數必須返回一個值。
19、LINK : fatal error LNK1168: cannot open Debug/P1.exe for writing
連接錯誤:不能打開P1.exe文件,以改寫內容。(一般是P1.Exe還在運行,未關閉)
20、error LNK2001: unresolved external symbol "public: virtual _ _thiscall C……::~C……(void)"
連接時發現沒有實現的外部符號(變數、函數等)。
function call missing argument list 調用函數的時候沒有給參數。 member function definition looks like a ctor, but name does not match enclosing class 成員函數聲明了但沒有使用
unexpected end of file while looking for precompiled header directive 在尋找預編譯頭文件時文件意外結束,編譯不正常終止可能造成這種情況

閱讀全文

與dc沒有編譯是什麼原因相關的資料

熱點內容
環液式壓縮機 瀏覽:477
android控制項事件 瀏覽:965
雲伺服器的鏡像選擇什麼 瀏覽:754
python如何設置cplex 瀏覽:8
linux的mv命令詳解 瀏覽:357
怎麼把安裝好的python放在桌面上 瀏覽:119
mysql退出當前命令 瀏覽:741
現在還有什麼手機好用的app 瀏覽:324
java字元處理函數 瀏覽:274
指紋用於應用加密什麼意思 瀏覽:998
怎麼取消蘋果手機的appid密碼 瀏覽:997
門禁系統錄制卡怎麼加密 瀏覽:753
ssm看源碼哪本書好 瀏覽:933
linux查看網卡的命令 瀏覽:497
basic語言演算法 瀏覽:13
怎麼快捷刪除無用文件夾 瀏覽:475
你家離學校源碼用英語回答 瀏覽:504
電腦如何用伺服器地址 瀏覽:652
php轉化為二進制 瀏覽:738
程序員到國企感受 瀏覽:863