c语⾔代码⼤全_C语⾔常⽤错误代码释义⼤全,值得收藏!对于刚学编程,刚接触C++的新⼿来说,编译运⾏报错是最头疼的⼀件事,爆出⼀堆英⽂,英语差⼀点的⼜不知道什么意思,所以也不知道如何去改,在此,我给⼤家传⼀份常见错误中英⽂对照表及简单解释,希望可以帮到⼤家:
fatal error C1003: error count exceeds number; stopping compilation
中⽂对照:(编译错误)错误太多,停⽌编译
分析:修改之前的错误,再次编译
fatal error C1004: unexpected end of file found
中⽂对照:(编译错误)⽂件未结束
分析:⼀个函数或者⼀个结构定义缺少“}”、或者在⼀个函数调⽤或表达式中括号没有配对出现、或者注释符“/*…*/”不完整等
fatal error C1083: Cannot open include file: 'xxx': No such file or directory
中⽂对照:(编译错误)⽆法打开头⽂件xxx:没有这个⽂件或路径
分析:头⽂件不存在、或者头⽂件拼写错误、或者⽂件为只读
fatal error C1903: unable to recover from previous error(s); stopping compilation
中⽂对照:(编译错误)⽆法从之前的错误中恢复,停⽌编译
分析:引起错误的原因很多,建议先修改之前的错误
error C2001: newline in constant
中⽂对照:(编译错误)常量中创建新⾏
分析:字符串常量多⾏书写
error C2006: #include expected a filename, found 'identifier'
中⽂对照:(编译错误)#include命令中需要⽂件名
分析:⼀般是头⽂件未⽤⼀对双引号或尖括号括起来,例如“#include stdio.h”
error C2007: #define syntax
中⽂对照:(编译错误)#define语法错误
分析:例如“#define”后缺少宏名,例如“#define”
error C2008: 'xxx' : unexpected in macro definition
中⽂对照:(编译错误)宏定义时出现了意外的xxx
分析:宏定义时宏名与替换串之间应有空格,例如“#define TRUE"1"”
error C2009: reuse of macro formal 'identifier'
中⽂对照:(编译错误)带参宏的形式参数重复使⽤
分析:宏定义如有参数不能重名,例如“#define s(a,a) (a*a)”中参数a重复
error C2010: 'character' : unexpected in macro formal parameter list
中⽂对照:(编译错误)带参宏的形式参数表中出现未知字符
分析:例如“#define s(r|) r*r”中参数多了⼀个字符‘|’
中⽂对照:(编译错误)预处理命令前⾯只允许空格
分析:每⼀条预处理命令都应独占⼀⾏,不应出现其他⾮空格字符error C2015: too many characters in constant 中⽂对照:(编译错误)常量中包含多个字符
分析:字符型常量的单引号中只能有⼀个字符,或是以“”开始的⼀个转义字符,例如“char error = 'error';”
error C2017: illegal escape sequence
中⽂对照:(编译错误)转义字符⾮法
分析:⼀般是转义字符位于 ' ' 或 " " 之外,例如“char error = ' 'n;”
error C2018: unknown character '0xhh'
中⽂对照:(编译错误)未知的字符0xhh
分析:⼀般是输⼊了中⽂标点符号,例如“char error = 'E';”中“;”为中⽂标点符号
error C2019: expected preprocessor directive, found 'character'
中⽂对照:(编译错误)期待预处理命令,但有⽆效字符
分析:⼀般是预处理命令的#号后误输⼊其他⽆效字符,例如“#!define TRUE 1”
error C2021: expected exponent value, not 'character'
中⽂对照:(编译错误)期待指数值,不能是字符
分析:⼀般是浮点数的指数表⽰形式有误,例如123.456E
error C2039: 'identifier1' : is not a member of 'identifier2'
中⽂对照:(编译错误)标识符1不是标识符2的成员
分析:程序错误地调⽤或引⽤结构体、共⽤体、类的成员
error C2041: illegal digit 'x' for base 'n'
中⽂对照:(编译错误)对于n进制来说数字x⾮法
分析:⼀般是⼋进制或⼗六进制数表⽰错误,例如“int i = 081;”语句中数字‘8’不是⼋进制的基数
error C2048: more than one default
中⽂对照:(编译错误)default语句多于⼀个
分析:switch语句中只能有⼀个default,删去多余的default
error C2050: switch expression not integral
中⽂对照:(编译错误)switch表达式不是整型的
分析:switch表达式必须是整型(或字符型),例如“switch ("a")”中表达式为字符串,这是⾮法的
error C2051: case expression not constant
中⽂对照:(编译错误)case表达式不是常量
分析:case表达式应为常量表达式,例如“case "a"”中“"a"”为字符串,这是⾮法的
error C2052: 'type' : illegal type for case expression
中⽂对照:(编译错误)case表达式类型⾮法
error C2057: expected constant expression
中⽂对照:(编译错误)期待常量表达式
分析:⼀般是定义数组时数组长度为变量,例如“int n=10; int a[n];”中n为变量,这是⾮法的error C2058: constant expression is not integral
中⽂对照:(编译错误)常量表达式不是整数
分析:⼀般是定义数组时数组长度不是整型常量
error C2059: syntax error : 'xxx'
中⽂对照:(编译错误)‘xxx’语法错误
分析:引起错误的原因很多,可能多加或少加了符号xxx
error C2064: term does not evaluate to a function
中⽂对照:(编译错误)⽆法识别函数语⾔
分析:1、函数参数有误,表达式可能不正确,例如“sqrt(s(s-a)(s-b)(s-c));”中表达式不正确
2、变量与函数重名或该标识符不是函数,例如“int i,j; j=i();”中i不是函数
error C2065: 'xxx' : undeclared identifier
中⽂对照:(编译错误)未定义的标识符xxx
分析:1、如果xxx为cout、cin、scanf、printf、sqrt等,则程序中包含头⽂件有误
2、未定义变量、数组、函数原型等,注意拼写错误或区分⼤⼩写。
error C2078: too many initializers
中⽂对照:(编译错误)初始值过多
分析:⼀般是数组初始化时初始值的个数⼤于数组长度,例如“int b[2]={1,2,3};”
error C2082: redefinition of formal parameter 'xxx'
中⽂对照:(编译错误)重复定义形式参数xxx
分析:函数⾸部中的形式参数不能在函数体中再次被定义
error C2084: function 'xxx' already has a body
中⽂对照:(编译错误)已定义函数xxx
分析:在VC++早期版本中函数不能重名,6.0版本中⽀持函数的重载,函数名可以相同但参数不⼀样error C2086: 'xxx' : redefinition
中⽂对照:(编译错误)标识符xxx重定义
分析:变量名、数组名重名
error C2087: '<Unknown>' : missing subscript
中⽂对照:(编译错误)下标未知
分析:⼀般是定义⼆维数组时未指定第⼆维的长度,例如“int a[3][];”
error C2100: illegal indirection
分析:对⾮指针变量使⽤“*”运算
error C2105: 'operator' needs l-value
中⽂对照:(编译错误)操作符需要左值
分析:例如“(a+b)++;”语句,“++”运算符⽆效
error C2106: 'operator': left operand must be l-value
中⽂对照:(编译错误)操作符的左操作数必须是左值
分析:例如“a+b=1;”语句,“=”运算符左值必须为变量,不能是表达式
error C2110: cannot add two pointers
中⽂对照:(编译错误)两个指针量不能相加
分析:例如“int *pa,*pb,*a; a = pa + pb;”中两个指针变量不能进⾏“+”运算
error C2117: 'xxx' : array bounds overflow
中⽂对照:(编译错误)数组xxx边界溢出
分析:⼀般是字符数组初始化时字符串长度⼤于字符数组长度,例如“char str[4] = "abcd";”error C2118: negative subscript or subscript is too large
中⽂对照:(编译错误)下标为负或下标太⼤
分析:⼀般是定义数组或引⽤数组元素时下标不正确
error C2124: divide or mod by zero
中⽂对照:(编译错误)被零除或对0求余
分析:例如“int i = 1 / 0;”除数为0
error C2133: 'xxx' : unknown size
中⽂对照:(编译错误)数组xxx长度未知
分析:⼀般是定义数组时未初始化也未指定数组长度,例如“int a[];”
error C2137: empty character constant。
中⽂对照:(编译错误)字符型常量为空
分析:⼀对单引号“''”中不能没有任何字符
error C2143: syntax error : missing 'token1' before 'token2'
error C2146: syntax error : missing 'token1' before identifier 'identifier'
中⽂对照:(编译错误)在标识符或语⾔符号2前漏写语⾔符号1
分析:可能缺少“{”、“)”或“;”等语⾔符号
error C2144: syntax error : missing ')' before type 'xxx'
中⽂对照:(编译错误)在xxx类型前缺少‘)’
分析:⼀般是函数调⽤时定义了实参的类型
error C2181: illegal else without matching ifparameter是什么意思啊
分析:可能多加了“;”或复合语句没有使⽤“{}”
error C2196: case value '0' already used
中⽂对照:(编译错误)case值0已使⽤
分析:case后常量表达式的值不能重复出现
error C2296: '%' : illegal, left operand has type 'float'
error C2297: '%' : illegal, right operand has type 'float'
中⽂对照:(编译错误)%运算的左(右)操作数类型为float,这是⾮法的
分析:求余运算的对象必须均为int类型,应正确定义变量类型或使⽤强制类型转换
error C2371: 'xxx' : redefinition; different basic types
中⽂对照:(编译错误)标识符xxx重定义;基类型不同
分析:定义变量、数组等时重名
error C2440: '=' : cannot convert from 'char [2]' to 'char'
中⽂对照:(编译错误)赋值运算,⽆法从字符数组转换为字符
分析:不能⽤字符串或字符数组对字符型数据赋值,更⼀般的情况,类型⽆法转换
error C2447: missing function header (old-style formal list?)
error C2448: '<Unknown>' : function-style initializer appears to be a function definition 中⽂对照:(编译错误)缺少函数标题(是否是⽼式的形式表?)
分析:函数定义不正确,函数⾸部的“( )”后多了分号或者采⽤了⽼式的C语⾔的形参表
error C2450: switch expression of type 'xxx' is illegal
中⽂对照:(编译错误)switch表达式为⾮法的xxx类型
分析:switch表达式类型应为int或char
error C2466: cannot allocate an array of constant size 0
中⽂对照:(编译错误)不能分配长度为0的数组
分析:⼀般是定义数组时数组长度为0
error C2601: 'xxx' : local function definitions are illegal
中⽂对照:(编译错误)函数xxx定义⾮法
分析:⼀般是在⼀个函数的函数体中定义另⼀个函数
error C2632: 'type1' followed by 'type2' is illegal
中⽂对照:(编译错误)类型1后紧接着类型2,这是⾮法的
分析:例如“int float i;”语句
error C2660: 'xxx' : function does not take n parameters
中⽂对照:(编译错误)函数xxx不能带n个参数
分析:调⽤函数时实参个数不对,例如“sin(x,y);”
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论