1. 程式人生 > >無法解析的外部符號 _main,該符號在函式 ___tmainCRTStartup 中被引用

無法解析的外部符號 _main,該符號在函式 ___tmainCRTStartup 中被引用

1、warning C4819: 該檔案包含不能在當前內碼表(936)中表示的字元。請將該檔案儲存為 Unicode 格式以防止資料丟失

      解決: http://blog.csdn.net/lcb_coconut/article/details/76136725          2、 解決警告——warning C4018: “<”: 有符號/無符號不匹配       解決:http://blog.csdn.net/lxw907304340/article/details/47399207
      出錯程式碼: for(int j=0;j<detector.size();j++)
      出錯原因分析: detector 是一個Vector容器 ,detecot.size() 在容器說明中 被定義為: unsigned int 型別, 而j是int 型別 所以會出現: 有符號/無符號不匹配警告
      錯誤改正: 定義j為unsigned型別後就可以了
      即: for(unsigned int j=0;j<detector.size();j++)

      或者: for(size_t int j=0;j<detector.size();j++)

    3、OpenCV Error: Unspecified error (could not find a writer for the specified extension) in cv::imwrite_, file C:\buildslave64\win64_amdocl\2_4_PackSlave-win32-vc11-shared\opencv\modules\highgui\src\loadsave.cpp, line 275


4、

vs出錯提示程式無法正常啟動(0xc000007b)解決方案

http://bbs.csdn.net/topics/392075264

http://bbs.csdn.net/topics/391863670

http://blog.csdn.net/zhuimenglizhi/article/details/52203003

並沒有解決


5、突然64位的編譯器都沒有了,只有win32

解決:

配置管理器——活動解決方案平臺——新建——(新平臺)×64——(從此處複製)選空白


6.error LNK2005: "void __cdecl cc_regis(class cv::Mat,class cv::Mat,class cv::Mat &,class cv::Mat &,class cv::Mat &)" ([email protected]@[email protected]@@[email protected]@Z) 已經在 main.obj 中定義

解決:

LNK2005錯誤是由於你在main()函式中引用的是#include "bank_ac.cpp" 而非 #include "bank_ac.h"所導致;
      改成#include "bank_ac.h"之後還會有一個因為行內函數造成的LNK2019問題,改正方式是將
cpp檔案中的行內函數定義移到類的標頭檔案中。
      行內函數的定義還是有一定的規則的。
改了include的引用之後,只引用標頭檔案,沒有了錯誤,剩下的再講。

  
7.直接對函式檔案cpp進行編譯時出現錯誤

無法解析的外部符號 _main,該符號在函式 ___tmainCRTStartup 中被引用

http://blog.csdn.net/yj574008854/article/details/45396615
https://jingyan.baidu.com/article/d621e8da0d7c022864913f40.html

  
8.遠端操作的時間比預期花費得要長
https://www.cnblogs.com/chinaboyzzy/p/4833551.html
https://www.cnblogs.com/chinaboyzzy/p/4833551.html
http://www.xpgod.com/article/58401.html

  

  

  

9.

error MSB8020: The builds tools for v120 (Platform Tools

http://blog.sina.com.cn/s/blog_e5440f8f0102w9lu.html

更改配置平臺


10.

Error 1 error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

http://blog.csdn.net/hengbao4/article/details/53300894

解決方法

使用VS會出現'scanf': This function or variable may be unsafe. Consider using scanf_s ins這種錯誤,這是新版vc庫新增的警告因為微軟認為scanf的使用存在安全隱患,因為C/C++中的字串處理都是以\0為截止符的,如果搜尋不到\0,容易出現字串越界所有vc擴充套件的所謂安全標準庫,都添加了一個引數用以指定字串引數的長度,用以避免這種安全隱患。 不想出現這種情況,其實很簡單

https://jingyan.baidu.com/article/363872ecd87e5d6e4ba16f1c.html


11.

Loaded 'C:\Windows\SysWOW64\msvcp120d.dll'. Cannot find or open the PDB file

解決方法

http://blog.csdn.net/lj695242104/article/details/14162183