C++课程上机实验常见错误汇集由刀豆文库小编整理,希望给你工作、学习、生活带来方便,猜你可能喜欢“c语言上机实验心得”。
C++课程上机实验常见错误汇集
1. 调试器错误信息:syntax error : miing ';'
原因:在源码中遗失“;”
2.调试器错误信息:例:error C2065: 'cout' : undeclared identifier.原因:例如cout/cin/endl/>等在命名空间中定义的符号和标示符无法使用。缺少命名空间使用定义:即缺少“using namespace std;”
3. 调试器错误信息:例:error C2065: 'i' : undeclared identifier原因:变量未定义就直接使用.C++语言中,变量的使用必需遵循先声明定义,后使用的原则。
4.调试器错误信息:error C2018: unknown character '0xa3'
原因:在程序中使用中文标示符,如将英文”;”错误输入成了”;”在C++中,除程序注释可以采用中文外,其余字符要求使用英文。不少同学在建立工程或程序名称时也使用中文名称,建议改掉这种习惯。
5.调试器错误信息:例:error C2676: binary '>>' : 'cla std::basic_ostream >' does not define this operator or a conversion to a type acceptable to the predefined operator
原因:在使用输入输出流的时候错误使用了标示符“>>”“>a;
6.调试器错误信息:warning C4305: 'initializing' : truncation from 'const double' to 'float'
原因:定义的变量类型与使用不对应,如声明为float,但实际给与了一个double的值,例:float pi=3.***;
7.调试器错误信息:warning C4700: local variable 'a' used without having been initialized
原因:变量在赋值之前就使用,例:int a, b, c;c=a+b;cin>>a>>b;
8. error C2556: 'int __cdecl main(void)' : overloaded function differs only by return type from 'void __cdecl main(void)'
E:tempalskdfldid.cpp(4): see declaration of 'main'
E:tempalskdfldid.cpp(15): error C2371: 'main' : redefinition;different basic types
原因:在一个工程中包含多于一个的main函数
9.调试器错误信息:error C2447: miing function header(old-style formal list?)
原因:在函数定义的()后面使用分号
例:void chang();
{„..}
10.调试器错误信息:error C2660: 'chang' : function does not take 2 parameters
原因:函数声明/定义/调用参数个数不匹配。
例:void chang(int a,int b, float c)
{„}
void main()
{„chang(3,4);}
11、atal error C1010: unexpected end of file while looking for precompiled header directive。
原因:寻找预编译头文件路径时遇到了不该遇到的文件尾。(一般是没有#include “stdafx.h”)
12、fatal error C1083: Cannot open include file: 'R„„.h': No such file or directory
原因:不能打开包含文件“R„„.h”:没有这样的文件或目录。
13、error C2011: 'C„„': 'cla' type redefinition
原因:类“C„„”重定义。
14、error C2018: unknown character '0xa3'
原因:不认识的字符'0xa3'。(一般是汉字或中文标点符号)
15、error C2057: expected constant expreion
原因:希望是常量表达式。(一般出现在switch语句的case分支中)
16、error C2065: 'IDD_MYDIALOG' : undeclared identifier
原因:“IDD_MYDIALOG”:未声明过的标识符。
17、error C2082: redefinition of formal parameter 'bReset'
原因:函数参数“bReset”在函数体中重定义。
18、error C2143: syntax error: miing ':' before '{'
原因:句法错误:“{”前缺少“;”。
19、error C2146: syntax error : miing ';' before identifier 'dc'
原因:句法错误:在“dc”前丢了“;”。
20、error C2196: case value '69' already used
原因:值69已经用过。(一般出现在switch语句的case分支中)
21、error C2509: 'OnTimer' : member function not declared in 'CHelloView'原因:成员函数“OnTimer”没有在“CHelloView”中声明。
22、error C2511: 'reset': overloaded member function 'void(int)' not found in 'B'
原因:重载的函数“void reset(int)”在类“B”中找不到。
23、error C2555: 'B::f1': overriding virtual function differs from 'A::f1' only by return type or calling convention
原因:类B对类A中同名函数f1的重载仅根据返回值或调用约定上的区别。
24、error C2660: 'SetTimer' : function does not take 2 parameters原因:“SetTimer”函数不传递2个参数。
25、warning C4035: 'f„„': no return value
原因:“f„„”的return语句没有返回值。
26、warning C4553: '= =' : operator has no effect;did you intend '='?原因:没有效果的运算符“= =”;是否改为“=”?
27、warning C4700: local variable 'bReset' used without having been initialized
原因:局部变量“bReset”没有初始化就使用。
28、error C4716: 'CMyApp::InitInstance' : must return a value原因:“CMyApp::InitInstance”函数必须返回一个值。
29、LINK : fatal error LNK1168: cannot open Debug/P1.exe for writing
原因:连接错误:不能打开P1.exe文件,以改写内容。(一般是P1.Exe还在运行,未关闭)
30、error LNK2001: unresolved external symbol “public: virtual _ _thiscall C„„::~C„„(void)”
原因:连接时发现没有实现的外部符号(变量、函数等)。