VC中使用STL出現的警告

2021-04-08 15:53:01 字數 592 閱讀 8383

當在使用stl時,vc有時會提出類似以下的警告:

compiling...

test.cpp

c:/windows/desktop/test/test.cpp(13) : warning c4786: 'std::reverse_iterator,std::allocator> const *,std::basic_string,std::allocator>,std::basic_string,std::allocator> const &,std::basic_string,std::allocator> const *,int>' : identifier was truncated to '255' characters in the debug information

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/c4786.asp給了很好的解釋.

都是因為vc對stl的不完全支援造成的.

解決方法:

#ifdef win32

#pragma warning (disable: 4514 4786)

#endif

MySQL在VC中使用時出現的問題

1 出現以下 debug 資訊時 testnewsql.obj error lnk2001 unresolved external symbol mysql close 4 testnewsql.obj error lnk2001 unresolved external symbol mysql s...

VC 中使用lib檔案 使用庫的方法

1.包含庫的標頭檔案 在應用程式工程中使用 include file path file path可以為絕對路徑,也可以為相對於工程所在目錄的相對路徑 如果標頭檔案比較多,可以在project settings c c preprocessor的additional include director...

VC中使用SkinMagic給你的軟體換膚

mfc換膚例項 將skinmagictrial.lib skinmagictrial.dll和skinmagiclib.h拷貝到專案根目錄下,並在工程中新增 把skins資料夾放在專案根目錄下 建立一個mfc單文件專案 stdafx.h檔案中 增加 include skinmagiclib.h ve...

scrapy中使用正確的xpath出現空列表問題

今天在使用scrapy框架爬取網頁時,使用正確的xpath來爬取時,爬取的缺失空列表,如下 coding utf 8 import scrapy class haodfspider scrapy.spider name haodf start urls def parse self,response...

VC6中使用GDI 的方法

2.將標頭檔案和庫檔案分別拷貝至vc的安裝目錄,如 d program files x86 microsoft visual studio vc98 include 和d program files x86 microsoft visual studio vc98 lib 3.在stdafx.h的標...