Q
更改名稱的鏈接
7
A
回答
10
在C++是形成不良的代碼(你有多個定義變量i
)即需要標準一致性編譯器來發出錯誤消息
$ 3.2.1(C++ 03)
No translation unit shall contain more than one definition of any variable, function, class type, enumeration type or template.
在C99您的代碼調用未定義行爲,因爲6.2.2/7說
If, within a translation unit, the same identifier appears with both internal and external linkage, the behavior is undefined.
1
號在CI得到這個錯誤:
test.c:2: error: non-static declaration of ‘i’ follows static declaration
test.c:1: note: previous definition of ‘i’ was here
在C++中,這些:
test.cpp:2: error: redefinition of ‘int i’
test.cpp:1: error: ‘int i’ previously defined here
相關問題
- 1. 更改鏈接而不更改名稱
- 2. 更改jquery中鏈接的類名稱
- 3. Javascript - 鏈接名稱更改有限制
- 4. 鏈接後更改符號名稱
- 5. epydoc和reStructuredText更改鏈接名稱
- 6. 更改鏈接,從ID到名稱
- 7. 在生成的鏈接字段上更改鏈接名稱
- 8. 更改應用名稱會更改應用的鏈接?
- 9. 如果MySQL表的名字是改則鏈接名稱變更
- 10. 更改鏈接的名稱,以顯示網站的網址php
- 11. 更改符號鏈接的目標,而不更改它在linux中的名稱
- 12. 無法更改網站中鏈接的名稱?
- 13. 如何更改wordpress編輯器插入鏈接的類名稱?
- 14. 如何更改Spring RepositoryRestResource中鏈接的服務器名稱?
- 15. Ajax更改按鈕提交時鏈接的類名稱
- 16. Flash超鏈接 - 更改網址中的var名稱
- 17. 用文本鏈接更改URL的文件夾名稱?
- 18. 名稱鏈接表
- 19. 更改名稱
- 20. 更改名稱
- 21. 更改名稱
- 22. 更改名稱
- 23. 添加鏈接服務器 - SQL Server 2005 - 稍後更改名稱
- 24. 永久鏈接:在wordpress中更改頁面名稱
- 25. 基於無線電值更改鏈接按鈕名稱
- 26. Android:在WebView中更改YouTube鏈接名稱
- 27. 爲什麼鏈接器更改共享庫名稱?
- 28. mysql使用連接更改列名稱
- 29. 公司名稱更改iTunes連接
- 30. 更改Joomla網站上的域名,並自動更改鏈接?
你不試試呢? – sje397 2010-12-01 15:17:46
什麼是C/C++? 。 – 2010-12-01 15:23:27
@Charles C和C++。 – 2010-12-01 15:25:36