文档详情

C++常见编译链接错误即解决方法C++常见编译链接错误即解决方法.docx

发布:2017-12-13约1.72万字共23页下载文档
文本预览下载声明
C++课程上机实验常见错误汇集 1.? 在源码中遗失“;”调试器错误信息:syntax error : missing ;2.? 缺少命名空间使用定义:即缺少“using namespace std;”调试器错误信息:例:error C2065: cout : undeclared identifier例如cout/cin/endl//等在命名空间中定义的符号和标示符无法使用。3.? 变量未定义就直接使用调试器错误信息:例:error C2065: i : undeclared identifier C++语言中,变量的使用必需遵循先声明定义,后使用的原则。4.? 在程序中使用中文标示符,如将英文”;”错误输入成了”;”调试器错误信息:error C2018: unknown character 0xa3在C++中,除程序注释可以采用中文外,其余字符要求使用英文。不少同学在建立工程或程序名称时也使用中文名称,建议改掉这种习惯。5.? 在使用输入输出流的时候错误使用了标示符“”“”,例couta;调试器错误信息:例:error C2676: binary : class std::basic_ostreamchar,struct std::char_traitschar does not define this operator or a conversion to a type acceptable to the predefined operator对于流操作的方向搞错是一个普遍错误,问题本来并不复杂,可能是由于没有认真看书的原因。6.? 定义的变量类型与使用不对应,如声明为float,但实际给与了一个double的值,例:float pi=3.412345245656245;调试器错误信息:warning C4305: initializing : truncation from const double to float7.变量在赋值之前就使用,例:int a, b, c; c=a+b; cinab; 调试器错误信息:warning C4700: local variable a used without having been initialized 出现这种错误主要是对面向过程的程序执行没有理解。8.? 在一个工程中包含多于一个的main函数error C2556: int __cdecl main(void) : overloaded function differs only by return type from void __cdecl main(void) E:\temp\alskdf\ldid.cpp(4) : see declaration of mainE:\temp\alskdf\ldid.cpp(15) : error C2371: main : redefinition; different basic types在上机课中始终有同学犯这种错误,原因可能是从来没有上过机。9.? 在函数定义的()后面使用分号例:void chang(); {…}调试器错误信息:error C2447: missing function header (old-style formal list?)10.? 函数声明/定义/调用参数个数不匹配.例:void chang(int a,int b, float c){?…}void main(){?…?chang(3,4);?}调试器错误信息:error C2660: chang : function does not take 2 parameters???最常见的20种VC++编译错误信息 1、atal error C1010: unexpected end of file while looking for precompiled header directive。 寻找预编译头文件路径时遇到了不该遇到的文件尾。(一般是没有#include stdafx.h) 2、fatal error C1083: Cannot open include file: R…….h: No such file or directory不能打开包含文件“R…….h”:没有这样的文件或目录。3、error C2011: C……: class type redefinition类“C……”重定义。4、error C2018: unknown character 0xa3不认识的字符0xa3。(一般是汉字或中文标点符号)5、error C2057: expected constant expression希望是常量表达式。(一般出现在switch语句的case分支中)6、error C
显示全部
相似文档