青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

[轉載]VC++常見錯誤

Visual C++ Error Messages

This page contains a listing of "difficult to diagnose" error messages and possible fixes. I haven't taught a programming class that uses Visual C++ in several years so this list is probably out of date by now.  It was valid for Microsoft Visual C++ version 6.0 service pack 3.

 

C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 1786) Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information

This error results from leaving off the parentheses immediately following the function name in a function header.  To correct the error simply add () to the end of the function name.

 

C1010: unexpected end of file while looking for precompiled header directive

If your project is an MFC AppWizard created project then this error results from not #including StdAfx.h as the first include statement (before any other includes, data declarations, or executable program code).

 

C1083: Cannot open precompiled header file: 'Debug/<Project-Name>.pch': No such file or directory

This error results from a missing file - the compiled version of StdAfx.cpp. Visual C++ does a poor job of keeping track of this file and frequently "forgets" how to build it. This problem often occurs after restoring a saved workspace from diskette without the Debug directory. To fix the error select StdAfx.cpp from the workspace file list them choose Compile from the Build menu.  If that doesn't work the go to Project -> Settings, select the C/C++ tab, and click the radio button labeled Create Precompiled Headers.

 

C2001: newline in constant

This error is usually caused by a string or character constant that is missing its closing ' or " symbol.

C2065: '<data-member name>' : undeclared identifier

If this error occurs in one of your member functions then it is generally the result of forgetting the class scope operator in front of the function name in your .cpp file.

 

C2143: syntax error : missing ';' before 'PCH creation point'

Check each of the include files to ensure that the closing brace of each class declaration is followed by a semicolon.

 


C2143: syntax error : missing ';' before '*'

If this error is followed by two C2501 errors then the problem is an undeclared class name within a pointer declaration.

For example, the declaration:

CClass *pObject;

will generate the above error message followed by a C2501 error message for 'CClass' and another C2501 message for 'pObject'.  The problem is that the compiler isn't recognizing CClass as a valid class/type name.  To correct the problem add a i nclude of the file containing the declaration of CClass (e.g., i nclude CClass.h)

 

C2447: missing function header (old-style formal list?)

This error usually results from a missing { or use of a ; instead of a { following the parameter list of a function header.

 

C2511: '<function-name>' : overloaded member function not found in '<class-name>'

This error results from a mismatch in the parameter list of a member function declaration (.h file) and definition (.ccp file). Check the forward declaration of the function in the .h file and its definition in the .cpp file and ensure that the number of parameters and the type of each parameter match exactly.

C2512: '<constructor-function-name>' : no appropriate default constructor available

This error usually occurs when you implement the constructor function of a derived class and forget to include parameter passing to the base class constructor function.   For example assume that CDerived is derived from CBase and that the CBase constructor function requires one parameter (e.g., int A).  If you define the CDerived constructor function as:

CDerived::CDerived(int A, int B) { ... }

the compiler will issue the above error message on the line containing the function header of CDerived::CDerived() because you haven't provided instructions for routing the parameter A to CBase::CBase().  Because you didn't provide instructions the compiler assumes that CBase::CBase() requires no arguments and it complains because no version of CBase::CBase() has been defined that accepts zero arguments.

If you intended to provide a version of CBase::CBase() that requires no arguments then the error message indicates that you forgot to declare that function in your base class declaration (e.g., in CBase.h).

If CBase::CBase() does require one or more arguments then you must correct the problem by including explicit instructions for passing parameters from the derived class constructor function to the base class constructor function.  The correction for the example above is:

CDerived::CDerived(int A, int B) : CBase(A) { ... }

 

C2556: '<function-name>' : overloaded functions only differ by return type
C2371: '<function-name>' : redefinition; different basic types

These errors usually result from a mismatch of function type between a .h and .cpp file. Check the forward declaration of the function in the .h file and its definition in the .cpp file and make the function return type identical in both files.

 

C2601: '<function-name>' : local function definitions are illegal

This error results from defining one function inside the body of another function.   It usually means that you omitted one or more } symbols in the function just before the function named in the error message.

C2653: '<Class-Name>' : is not a class or namespace name

This error usually results from not having include "StdAfx.h" as the first include statement in your class.cpp file.  It can also occur if your class definition is in a .h file and you forget to include that .h file in another file that refers to the class name.

 

C2661: '<Class-Name>::<Function-Name>' : no overloaded function takes n parameters

This error indicates a mismatch between the parameters used in a function call (e.g., from main.cpp) and the declaration of the function.  The function call is passing n parameters and there is no function declaration that uses that number of parameters.

 

LNK1104: Cannot open file nafxcwd.lib

This error sometimes occurs when a project uses a class from the MFC but the project settings don't explicitly tell the link editor to look in the MFC libraries. 

Go to Project --> Settings (Build --> Settings in Visual C++ 4.0). On the General tab check the box that says "Use MFC in a Shared DLL".

 

LNK1168: cannot open Debug\<Project-Name>.exe for writing

This error occurs when the link editor attempts to write to a .exe file that is currently in use. The .exe file of an executing program is write protected until the program is terminated. Look at the status bar at the bottom of your screen and find the icon representing your executable application. Open the application and exit from it. Then select Build.

 

LNK2001: unresolved external symbol __endthreadex
LNK2001: unresolved external symbol __beginthreadex

These errors result from using an MFC object or function without telling the link editor to search the MFC libraries.

Go to Project --> Settings (Build --> Settings in Visual C++ 4.0). On the General tab check the box that says "Use MFC in a Shared DLL".

LNK2001: unresolved external symbol _main

Your project doesn't contain a function called main().  The error usually results from forgeting to add main.cpp to the project workspace.

 

<File>.obj : error LNK2001: unresolved external symbol "public: void __thiscall <Class1>::<Function1>(<Type>)"

This a generic form of a LNK2001 error where <File>.obj can be any object file in your project and <Class1>::<Function1>(<Type>) can be any function in any class.  Substitute the specific <File>, <Class>, <Function>, and <Type> in your message into the instructions below to diagnose and correct the problem.

An LNK2001 error means that the link editor is looking for a compiled function and can't find it.  The call to the "missing function" is somewhere in <File>.cpp. Unfortunately, double-clicking on the error message won't take you to the point in <File.cpp> where the function is called but you can search for it with Find or Find In Files.  The function the link editor can't find is a member of <Class>, its name is <Function1>, and its return type is <Type>.

There are two common reasons for a LNK2001 error:

1.        The call in <File>.cpp doesn't match the function prototype in <Class>.h and/or the implementation in <Class>.cpp.  The mismatch may be in the function name, return type, or number and/or type of parameters.   Correction strategies include:

o        Check that the function name is spelled the same (case sensitive) in all three files (File.cpp, Class.h, and Class.cpp).

o        Check that the function is actually declared and defined within <Class> - perhaps you defined it as a member of a different class or perhaps you tried to call the function (in <File>.cpp) using an object or object pointer of a different class.

o        Check that the number and type of parameters in the function implementation (in <Class>.cpp) matches the number and type of parameters declared in the function declaration in <Class>.h.

o        Check that the number and type of parameters in the function call (in <File>.cpp) matches the number and type of parameters declared in the function header in <Class>.cpp.

2.        The function was never declared or was declared but never defined.  To see if either is the case go to the ClassView window of the Workspace view.  Click the + next to <Class> and find <Function> in the list of member functions.

o        If <Function> is NOT in the list then it was never declared or defined - add a declaration to the class declaraion in <Class>.h and implement the function in <Class>.cpp.

If <Function> is in the list then right click on it and select Go To Definition from the pop-up menu.  If you get the error message Cannot find definition (implementation) of this function then the function was declared but never defined (implemented).  Implement the function to

o        <Class>.cpp.

 

LNK2005: <some-long-string-of-mostly-garbage> already defined in <name>.lib(<name>.obj)

This error usually results from including a source code file multiple times. If you recognize any of the names in the message then it probably results from multiple inclusion of one of your own header files. Check to be sure that you've used #ifndef/#define/#endif properly your header files. If you don't recognize the name then it's probably multiple inclusion of a system file (e.g., afxwin.h). Make sure that you haven't explicitly included something in main.cpp that is already included in one of your own header files.   Also check that you haven't included a .cpp file where you should have included a .h file

posted on 2007-04-15 21:24 ashura 閱讀(2320) 評論(0)  編輯 收藏 引用 所屬分類: Computer Science

<2007年4月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

導航

統計

常用鏈接

留言簿(2)

隨筆分類

隨筆檔案

文章分類

文章檔案

搜索

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            在线观看日产精品| 亚洲欧美中文日韩v在线观看| 亚洲高清色综合| 亚洲你懂的在线视频| 亚洲一级一区| 欧美一区二区三区男人的天堂| 欧美精品18+| 欧美精品在线免费观看| 欧美日韩日日夜夜| 国产精品久久久久影院色老大 | 久久成人资源| 国产精品美女| 国产精品入口麻豆原神| 国产午夜精品久久久久久免费视| 亚洲一区二区三| 夜夜嗨av一区二区三区网页| 一区二区三区视频免费在线观看| 午夜视频精品| 久久久久五月天| 亚洲人妖在线| 亚洲专区欧美专区| 麻豆精品一区二区综合av| 欧美欧美天天天天操| 国产精品一二一区| 亚洲黄色在线观看| 欧美一区二区三区精品| 欧美成人69av| 亚洲天堂久久| 你懂的视频欧美| 国产精品成人aaaaa网站 | 日韩亚洲不卡在线| 午夜精品一区二区三区四区| 久久综合色综合88| 国产精品美女久久久久久2018 | 久久精品道一区二区三区| 久久男女视频| 国产免费亚洲高清| 亚洲第一页在线| 欧美一级久久久| 亚洲国产欧美一区| 午夜精品久久久久久久99樱桃 | 中文av一区特黄| 久久男人资源视频| 国产精品高潮在线| 亚洲国产日韩欧美综合久久 | 嫩草影视亚洲| 国产日韩欧美不卡在线| 国产精品99久久久久久久女警| 亚洲动漫精品| 欧美一区1区三区3区公司| 亚洲黄色高清| 免费成人你懂的| 国产视频丨精品|在线观看| 亚洲一区不卡| av不卡在线观看| 欧美精品播放| 亚洲精品乱码久久久久久黑人| 樱桃国产成人精品视频| 另类激情亚洲| 久久久精品999| 国产精品一区2区| 亚洲视频第一页| 欧美福利精品| 另类av导航| 亚洲精品三级| 亚洲欧洲综合另类在线| 欧美电影在线观看| 9色porny自拍视频一区二区| 亚洲精品美女在线| 欧美日韩视频| 欧美一级精品大片| 久久精品一二三| 亚洲精品视频在线播放| 99亚洲精品| 国产欧美日韩三级| 久久青青草原一区二区| 麻豆久久精品| 亚洲一区在线观看免费观看电影高清 | 久久大逼视频| 亚洲欧美另类在线观看| 国产视频观看一区| 欧美在线看片| 美女图片一区二区| 制服诱惑一区二区| 亚洲永久在线观看| 1024亚洲| 亚洲调教视频在线观看| 黄色工厂这里只有精品| 亚洲电影免费在线观看| 欧美视频在线一区| 久久久久久一区二区三区| 美女视频黄a大片欧美| 亚洲图片欧美日产| 久久久久国产精品厨房| 一区二区三区不卡视频在线观看| 久久这里只有精品视频首页| 久久久久这里只有精品| 日韩一区二区精品视频| 亚洲欧美日韩国产综合精品二区 | 久久精品国产一区二区三| 一区二区三区在线免费视频| 亚洲人人精品| 黄网动漫久久久| 日韩香蕉视频| 国内精品伊人久久久久av影院 | 亚洲欧洲精品一区| 欧美福利一区二区| 久久爱www.| 欧美电影在线免费观看网站| 久久精品国产欧美亚洲人人爽| 亚洲最新合集| 国产亚洲欧美一区| 亚洲精品在线三区| 一区二区三区在线免费视频| 一本色道久久综合亚洲精品按摩| 久久精品日产第一区二区| 亚洲国产一二三| 午夜久久99| 亚洲一区在线播放| 欧美二区在线| 免费日韩视频| 有坂深雪在线一区| 午夜精品理论片| 亚洲一区精品电影| 欧美日韩国产免费| 亚洲电影观看| 亚洲国产精品va| 久久成人免费日本黄色| 小嫩嫩精品导航| 国产精品欧美日韩久久| 99成人精品| 一区二区精品国产| 欧美日韩国产另类不卡| 亚洲人人精品| 99精品视频免费全部在线| 欧美成人精品在线播放| 免费一级欧美在线大片| 一区在线影院| 狂野欧美激情性xxxx欧美| 久久久久se| 精品不卡一区二区三区| 久久久久久日产精品| 久久亚洲电影| 伊人久久综合| 久久综合999| 亚洲韩国一区二区三区| 99ri日韩精品视频| 欧美日韩亚洲不卡| 中文欧美字幕免费| 久久av一区二区三区漫画| 国产亚洲日本欧美韩国| 欧美在线免费观看亚洲| 美日韩在线观看| 亚洲欧洲精品一区二区三区| 欧美精品一区二区三区在线看午夜| 一本色道**综合亚洲精品蜜桃冫 | 欧美成人蜜桃| 欧美不卡三区| 亚洲毛片一区二区| 国产精品夫妻自拍| 久久成年人视频| 亚洲福利视频网站| 夜夜嗨av一区二区三区中文字幕| 亚洲网站在线观看| 久久精品噜噜噜成人av农村| 尤物yw午夜国产精品视频| 欧美乱妇高清无乱码| 午夜精品福利视频| 免费在线看一区| 中文欧美在线视频| 国内成人精品一区| 欧美日韩国产bt| 先锋亚洲精品| 亚洲精品中文字幕有码专区| 欧美一区二区在线免费播放| 亚洲福利视频网| 欧美性大战久久久久久久| 亚洲欧美在线磁力| 最新69国产成人精品视频免费| 亚洲欧洲在线免费| 欧美成人蜜桃| 欧美激情亚洲一区| 亚洲第一精品福利| 欧美国产在线电影| 一本色道久久99精品综合| 国产日韩欧美在线播放| 免费观看欧美在线视频的网站| 在线一区二区三区四区五区| 国产区精品在线观看| 欧美 日韩 国产一区二区在线视频 | 国产精品福利在线| 久久一区国产| 欧美一区二区福利在线| 日韩视频免费在线观看| 免费日韩成人| 亚洲永久免费观看| 亚洲乱码视频| 在线精品视频一区二区| 国产日韩精品电影| 国产精品视频久久|