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

[轉(zhuǎn)載]VC++常見(jiàn)錯(cuò)誤

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 閱讀(2321) 評(píng)論(0)  編輯 收藏 引用 所屬分類: Computer Science

<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

導(dǎo)航

統(tǒng)計(jì)

常用鏈接

留言簿(2)

隨筆分類

隨筆檔案

文章分類

文章檔案

搜索

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            久久精品国产一区二区电影| 久久阴道视频| 国产一区二区久久久| 国产精品国产馆在线真实露脸| 欧美顶级大胆免费视频| 欧美www在线| 欧美日韩第一区| 国产精品一区二区在线观看网站| 国产精品高精视频免费| 国产精品嫩草99a| 国产毛片一区| 今天的高清视频免费播放成人 | 久久久噜噜噜久久人人看| 久久综合久久综合九色| 免费成人激情视频| 91久久国产综合久久| 亚洲黄色免费| 亚洲视频在线视频| 欧美一区二区三区四区在线| 久久夜色精品国产| 欧美激情小视频| 国产精品日韩在线播放| 国产在线播放一区二区三区| 亚洲黄色片网站| 亚洲一区二区动漫| 久久精品一区二区三区不卡牛牛 | 欧美午夜精品电影| 国产精品视频网址| 久热爱精品视频线路一| 欧美人与禽猛交乱配| 国产欧美在线播放| 亚洲国产三级| 香蕉精品999视频一区二区| 免费人成精品欧美精品| 中国成人黄色视屏| 女仆av观看一区| 国产主播一区二区| 亚洲欧美在线aaa| 亚洲国内在线| 久久综合狠狠| 国语自产精品视频在线看8查询8 | 国产午夜精品久久久| 亚洲精品午夜精品| 久久成人精品视频| 国产精品日韩欧美一区二区| 91久久黄色| 激情综合在线| 国产精品家教| 午夜精品剧场| 亚洲午夜国产成人av电影男同| 亚洲淫性视频| 国产精品香蕉在线观看| 韩国精品一区二区三区| 亚洲视频999| 91久久精品国产91性色| 亚洲免费在线精品一区| 国产精品成人一区二区三区夜夜夜 | 欧美一区二区成人| 夜夜嗨av色一区二区不卡| 久久视频在线视频| 久热爱精品视频线路一| 亚洲激情视频网| 国产精品欧美一区二区三区奶水 | 一本色道久久综合| 亚洲小视频在线| 韩国av一区二区三区| 午夜宅男久久久| 亚洲人www| 在线免费不卡视频| 夜夜爽av福利精品导航| 国产精品视频99| 久久婷婷色综合| 亚洲精选中文字幕| 亚洲国产成人精品久久| 91久久久一线二线三线品牌| 有坂深雪在线一区| 欧美成人免费视频| 欧美日韩精品系列| 一区二区三区产品免费精品久久75| 免费观看日韩| 欧美**人妖| 亚洲日本在线视频观看| 亚洲国产一区二区三区高清 | 亚洲欧美久久久| 一区二区三区欧美激情| 国产精品国产三级国产aⅴ浪潮| 午夜精品一区二区三区四区| 亚洲欧美日本精品| 久久久蜜桃一区二区人| 91久久精品网| 一区二区三区精密机械公司| 国产欧美日韩在线播放| 久久综合九色综合久99| 欧美粗暴jizz性欧美20| 亚洲影院在线观看| 久久动漫亚洲| 亚洲精品久久久一区二区三区| 亚洲卡通欧美制服中文| 国产一区二区欧美| 亚洲人成欧美中文字幕| 国产精品视频xxx| 欧美sm极限捆绑bd| 欧美日韩一区二区三区免费看| 欧美专区在线观看| 欧美高清视频在线| 亚洲欧美精品在线观看| 久久一区亚洲| 亚洲欧美在线一区二区| 久久五月天婷婷| 一区二区三区精品视频在线观看| 亚洲欧美国产毛片在线| 亚洲精品美女久久久久| 午夜精品一区二区三区在线视 | 在线看片第一页欧美| 日韩天天综合| 亚洲国产精品久久久久| 亚洲一区二区三区四区视频| 亚洲第一中文字幕| 久久不见久久见免费视频1| 欧美国产日韩视频| 久久九九99| 欧美午夜精品理论片a级按摩| 久久亚洲私人国产精品va媚药| 欧美日韩亚洲一区二区三区在线观看 | 最新热久久免费视频| 国产精品日韩二区| 久久琪琪电影院| 久久久爽爽爽美女图片| 亚洲欧美自拍偷拍| 欧美激情一区二区三区在线视频| 欧美主播一区二区三区| 国产精品xxxav免费视频| 亚洲精品国产精品乱码不99| 影院欧美亚洲| 久久九九国产精品| 久久亚洲电影| 噜噜噜91成人网| 亚洲午夜精品一区二区| 另类春色校园亚洲| 国内成+人亚洲| 欧美一区三区三区高中清蜜桃| 亚洲欧美第一页| 国产精品久久久久久久久久久久久 | 欧美在线免费视频| 亚洲黄色在线看| 欧美色一级片| 国产精品久久久久久久久久免费看| 国产又爽又黄的激情精品视频| 久热re这里精品视频在线6| 你懂的成人av| 亚洲欧美一区二区视频| 亚洲人成久久| aaa亚洲精品一二三区| 亚洲欧美一区在线| 中文在线不卡视频| 久久视频在线免费观看| 久久久精品五月天| 欧美呦呦网站| 激情成人av| 久久漫画官网| 亚洲高清资源| 亚洲欧洲一区二区三区在线观看 | 亚洲免费电影在线观看| 欧美国产视频在线观看| 免费人成精品欧美精品| 极品少妇一区二区三区| 正在播放日韩| 亚洲国产免费看| 老司机成人在线视频| 美国成人直播| 在线欧美不卡| 欧美成人嫩草网站| 亚洲另类一区二区| 国产一区二区三区日韩欧美| 蜜桃av噜噜一区| 性做久久久久久免费观看欧美| 亚洲另类春色国产| 亚洲精品在线观| 亚洲一区二区三区中文字幕在线| 欧美成人免费va影院高清| 亚洲性图久久| 午夜视频久久久| 久久久久久久久一区二区| 国产精品久久久久久久免费软件| 99精品视频免费观看视频| 久久理论片午夜琪琪电影网| 国产欧美日韩激情| 久久色在线观看| 欧美极品一区| 亚洲综合电影一区二区三区| 日韩亚洲欧美一区| 久久久噜噜噜久久| 久久精品欧美| 国产精品国产亚洲精品看不卡15| 在线一区视频| 欧美在线网站| 亚洲国产日韩欧美一区二区三区| 亚洲香蕉网站| 夜夜嗨一区二区| 久久一二三国产|