C语言常见编译错误及分析

更多干货推荐可以去牛客网看看,他们现在的IT题库内容很丰富,属于国内做的很好的了,而且是课程+刷题+面经+求职+讨论区分享,一站式求职学习网站,最最最重要的里面的资源全部免费!!!点击进入--------------》跳转接口
在这里插入图片描述

更多干货推荐可以去牛客网看看,他们现在的IT题库内容很丰富,属于国内做的很好的了,而且是课程+刷题+面经+求职+讨论区分享,一站式求职学习网站,最最最重要的里面的资源全部免费!!!点击进入--------------》跳转接口
在这里插入图片描述

目录

    • 绪论
    • 第一安装错误:
    • [1]Error spawning cl.exe
    • [2]fatal error C1083: Cannot open include file:
    • 第二打开编译器失败,提示不能打开
    • 第三cannot execute program解决方案
    • 第四连接Link.exe错误解决方案
    • 第五 error C2143: syntax error : missing ')' before 'return'解决方案
    • 第六涉及`scanf`输出结果为空的错误解决方案
    • 第七
    • error C2065: 'a' : undeclared identifier
    • error C2109: subscript requires array or pointer type
    • error C2102: '&' requires l-value
    • 第八
    • error C2018: unknown character '0xa3'
    • error C2018: unknown character '0xac'
    • 第九
    • fatal error C1083: Cannot open include file: 'stduio.h': No such file or directory
    • 文字说明
    • cannot open Debug/lalal.exe for writng executing link.exe.
    • 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
    • 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’
    • error C2007: #define syntax
    • error C2008: ‘xxx’ : unexpected in macro definition
    • error C2009: reuse of macro formal ‘identifier’
    • error C2010: ‘character’ : unexpected in macro formal parameter list
    • error C2014: preprocessor command must start as first nonwhite space
    • error C2015: too many characters in constant
    • error C2017: illegal escape sequence
    • error C2018: unknown character ‘0xhh’
    • error C2019: expected preprocessor directive, found ‘character’
    • *error C2021: expected exponent value, not ‘character’*
    • error C2039: ‘identifier1’ : is not a member of ‘identifier2’
    • error C2041: illegal digit ‘x’ for base ‘n’
    • error C2048: more than one default
    • error C2050: switch expression not integral
    • error C2051: case expression not constant
    • error C2052: ‘type’ : illegal type for case expression
    • error C2057: expected constant expression
    • error C2058: constant expression is not integral
    • error C2059: syntax error : ‘xxx’
    • error C2064: term does not evaluate to a function
    • error C2065: ‘xxx’ : undeclared identifier
    • error C2078: too many initializers
    • error C2082: redefinition of formal parameter ‘xxx’
    • error C2084: function ‘xxx’ already has a body
    • error C2086: ‘xxx’ : redefinition
    • error C2087: ‘’ : missing subscript
    • error C2100: illegal indirection
    • error C2105: ‘operator’ needs l-value
    • error C2296: ‘%’ : illegal, left operand has type ‘float’ error C2297: ‘%’ : illegal, right operand has type ‘float’
    • error C2371: ‘xxx’ : redefinition; different basic types
    • error C2440: ‘=’ : cannot convert from ‘char [2]’ to ‘char’
    • error C2447: missing function header (old-style formal list?) error C2448: ‘’ : function-style initializer appears to be a function definition
    • error C2450: switch expression of type ‘xxx’ is illegal
    • error C2466: cannot allocate an array of constant size 0
    • error C2601: ‘xxx’ : local function definitions are illegal
    • error C2632: ‘type1’ followed by ‘type2’ is illegal
    • error C2660: ‘xxx’ : function does not take n parameters
    • error C2664: ‘xxx’ : cannot convert parameter n from ‘type1’ to ‘type2’
    • error C2676: binary ‘<<’ : ‘class istream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator error C2676: binary ‘>>’ : ‘class ostream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator

绪论

首先我们来分类一下几种常见错误

  1. 逻辑错误
  2. 语法错误
  3. 链接错误
  4. 编译错误
  5. 安装错误

第一安装错误:


[1]Error spawning cl.exe

[2]fatal error C1083: Cannot open include file:

在这里插入图片描述
以上两种错误情况是一样的,头文件没有放到安装目录下,都是你在安装的时候路径选择错了,怎么解决呢?重新安装??这不能解决问题的!!!
解决方案:
在这里插入图片描述
在这里插入图片描述
我们首先点击可执行文件,然后在路径区将前四个路径分别做如下修改,和我下边的地址设置成一样!!如果你的前四个文件路径和我下边的不一样,那你就双击一下,修改地址即可。
在这里插入图片描述
双击之后点击那三个点就可以选择文件路径了!!
在这里插入图片描述
接下来目录选择头文件include区域!和上一步操作一样,把路径地址换成我下面的路径,记住如果这两你多余四行,那你就删除,删到只剩三行即可。
在这里插入图片描述
接下来选择目录如下,同时修改前两行地址,和下边的地址要一样,多余行数删除处理!
在这里插入图片描述
最后一步,选择另外一个目录,换掉前三行地址,和如下地址要一样!!
在这里插入图片描述
做完如上操作之后点击确定在进行编译,问题就解决了,如果没有解决那就是你的某个目录下的文件没有按照我的地址来配对,再检查一下就行了!

第二打开编译器失败,提示不能打开

在这里插入图片描述
这个问题的其实很简单的。解决方案:

  1. 点击进入---->下载该解压器
  2. 安装好之后,观察压缩包变成360zip之后就可以直接打开了!
    在这里插入图片描述

第三cannot execute program解决方案

在这里插入图片描述
问题导致原因:
你添加的工程名字和文件名字不一致
在这里插入图片描述
解决方案:
首先建好项目名字,在建你的C++source时,记得名字一定要一样!!!还有不能用中文名字!!
在这里插入图片描述
在这里插入图片描述

第四连接Link.exe错误解决方案

错误原因:
一个项目建了多个工程文件,且名字不对应,与第三错误类似

在这里插入图片描述
解决方案:重新新建一个项目,再建一个工程文件,记得名字要一样!!

第五 error C2143: syntax error : missing ‘)’ before 'return’解决方案

当发现这个语句的时候发现只要我们对应去找提示错误的语句就可以了,把失去的分号去掉就可以了!!!

在这里插入图片描述
可是我们发现,提示的语句是有分号的!!!
在这里插入图片描述
这个时候我们要去该语句的上一句或是下一句去寻找分号是否有缺失,双引号也是我们排查的目标!!!
在这里插入图片描述
我们发现其实上一个语句缺了分号
在这里插入图片描述
这个错误是很多人都容易忽略的,也是不容易看出来的,但一定要有这个思路!!

第六涉及scanf输出结果为空的错误解决方案

我们在输入一个值后输出缺为空!!
在这里插入图片描述
排查错误步骤:

  1. 输入语句格式【忘了地址符&】
  2. 输出语句格式【忘了逗号】
  3. 变量定义数据类型【数据类型不匹配】
    在这里插入图片描述
    加上地址符&之后就OK了

第七

error C2065: ‘a’ : undeclared identifier

error C2109: subscript requires array or pointer type

error C2102: ‘&’ requires l-value


在这里插入图片描述
分析:凡是发现连带错误的时候,都要自顶向下的检查拍错!看代码的时候也是自顶向下进行排查!
错误解决方案:
把for循环后边的分号去掉!!
在这里插入图片描述
你只要记住,也就是循环,选择结构的都不要再后边加分号。forif不要再后边加分号。

第八

error C2018: unknown character ‘0xa3’

error C2018: unknown character ‘0xac’

我相信这个错误大家已经见得司空见惯了吧!!!是不是一脸懵逼???
解决方案:
检查标点符号!检查标点符号!检查标点符号!

注意你的标点符号,有一个地方的标点用成了中文!!!
发现句子外边的分号正常那就看中间句子的空格间隙是不是特别大,如果大,那就说明符号有问题!!
在这里插入图片描述

第九

fatal error C1083: Cannot open include file: ‘stduio.h’: No such file or directory

这个是不是特别眼熟??
解决方案
观察头文件,你的头文件拼错了!!!
你们顺手就喜欢打一个u在上面,正确头文件:<stdio.h>
在这里插入图片描述


文字说明

cannot open Debug/lalal.exe for writng executing link.exe.

在这里插入图片描述
解决方案:
在这里插入图片描述

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 C2014: preprocessor command must start as first nonwhite space

中文对照:(编译错误)预处理命令前面只允许空格
分析:每一条预处理命令都应独占一行,不应出现其他非空格字符

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表达式类型非法
分析: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: ‘’ : missing subscript

中文对照:(编译错误)下标未知
分析:一般是定义二维数组时未指定第二维的长度,例如“int a[3][];”

error C2100: illegal indirection

中文对照:(编译错误)非法的间接访问运算符“
分析:对非指针变量使用“
”运算

error C2105: ‘operator’ needs l-value

中文对照:(编译错误)操作符需要左值
分析:例如“(a+b)++;”语句,“++”运算符无效

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: ‘’ : 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);”

error C2664: ‘xxx’ : cannot convert parameter n from ‘type1’ to ‘type2’

中文对照:(编译错误)函数xxx不能将第n个参数从类型1转换为类型2
分析:一般是函数调用时实参与形参类型不一致

error C2676: binary ‘<<’ : ‘class istream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator error C2676: binary ‘>>’ : ‘class ostream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator

分析:“>>”、“<<”运算符使用错误,例如“cin<

C语言常见编译错误及分析

      • 1、fatal error C1003: error count exceeds number; stopping compilation
      • 2、fatal error C1004: unexpected end of file found
      • 3、fatal error C1083: Cannot open include file: 'xxx': No such file or directory
      • 4、fatal error C1903: unable to recover from previous error(s); stopping compilation
      • 5、error C2001: newline in constant
      • 6、error C2006: #include expected a filename, found 'identifier'
      • 7、error C2007: #define syntax
      • 8、error C2008: 'xxx' : unexpected in macro definition
      • 9、error C2009: reuse of macro formal 'identifier'
      • 10、error C2010: 'character' : unexpected in macro formal parameter list
      • 11、error C2014: preprocessor command must start as first nonwhite space
      • 12、error C2015: too many characters in constant
      • 13、error C2017: illegal escape sequence
      • 14、error C2018: unknown character '0xhh'
      • 15、error C2019: expected preprocessor directive, found 'character'
      • 16、error C2021: expected exponent value, not 'character'
      • 17、error C2039: 'identifier1' : is not a member of 'identifier2'
      • 18、error C2041: illegal digit 'x' for base 'n'
      • 19、error C2048: more than one default
      • 20、error C2050: switch expression not integral
      • 21、error C2051: case expression not constant
      • 22、error C2052: 'type' : illegal type for case expression
      • 23、error C2057: expected constant expression
      • 24、error C2058: constant expression is not integral
      • 25、error C2059: syntax error : 'xxx'
      • 26、error C2064: term does not evaluate to a function
      • 27、error C2065: 'xxx' : undeclared identifier
      • 28、error C2078: too many initializers
      • 29、error C2082: redefinition of formal parameter 'xxx'
      • 30、error C2084: function 'xxx' already has a body
      • 31、error C2086: 'xxx' : redefinition
      • 32、error C2087: '' : missing subscript
      • 33、error C2100: illegal indirection
      • 34、error C2105: 'operator' needs l-value
      • 35、error C2106: 'operator': left operand must be l-value
      • 36、error C2110: cannot add two pointers
      • 37、error C2117: 'xxx' : array bounds overflow
      • 38、error C2118: negative subscript or subscript is too large
      • 39、error C2133: 'xxx' : unknown size
      • 40、error C2137: empty character constant。
      • 41、error C2143: syntax error : missing 'token1' before 'token2'
      • 42、error C2146: syntax 4error : missing 'token1' before identifier 'identifier'
      • 43、error C2144: syntax error : missing ')' before type 'xxx'
      • 44、error C2181: illegal else without matching if
      • 45、error C2196: case value '0' already used
      • 46、error C2296: '%' : illegal, left operand has type 'float'
      • 47 error C2297: '%' : illegal, right operand has type 'float'
      • 48、error C2371: 'xxx' : redefinition; different basic types
      • 49、error C2440: '=' : cannot convert from 'char [2]' to 'char'
      • 50、error C2447: missing function header (old-style formal list?)
      • 51、error C2448: '' : function-style initializer appears to be a function definition
      • 52、error C2450: switch expression of type 'xxx' is illegal
      • 53、error C2466: cannot allocate an array of constant size 0
      • 54、error C2601: 'xxx' : local function definitions are illegal
      • 55、error C2632: 'type1' followed by 'type2' is illegal
      • 56、error C2660: 'xxx' : function does not take n parameters
      • 57、error C2664: 'xxx' : cannot convert parameter n from 'type1' to 'type2'
      • 58、error C2676: binary '<<' : 'class istream_withassign' does not define this operator or a conversion to a type acceptable to the predefined operator error C2676: binary '>>' : 'class ostream_withassign' does not define this operator or a conversion to a type acceptable to the predefined operator
      • 59、error C4716: 'xxx' : must return a value
      • 60、fatal error LNK1104: cannot open file "Debug/Cpp1.exe"
      • 61、fatal error LNK1168: cannot open Debug/Cpp1.exe for writing
      • 62、fatal error LNK1169: one or more multiply defined symbols found
      • 63、error LNK2001: unresolved external symbol _main
      • 64、error LNK2005: _main already defined in Cpp1.obj
      • 65、warning C4003: not enough actual parameters for macro 'xxx'
      • 66、warning C4067: unexpected tokens following preprocessor directive - expected a newline
      • 67、warning C4091: '' : ignored on left of 'type' when no variable is declared
      • 68、warning C4101: 'xxx' : unreferenced local variable
      • 69、warning C4244: '=' : conversion from 'type1' to 'type2', possible loss of data
      • 70、warning C4305: 'initializing' : truncation from 'const double' to 'float'
      • 71、warning C4390: ';' : empty controlled statement found; is this the intent?
      • 72、warning C4508: 'xxx' : function should return a value; 'void' return type assumed
      • 73、warning C4552: 'operator' : operator has no effect; expected operator with side-effect
      • 74、warning C4553: '==' : operator has no effect; did you intend '='?
      • 75、warning C4700: local variable 'xxx' used without having been initialized
      • 76、warning C4715: 'xxx' : not all control paths return a value
      • 77、warning C4723: potential divide by 0
      • 78、warning C4804: '<' : unsafe use of type 'bool' in operation

转载自编程论坛-“自学的数学"的帖子

1、fatal error C1003: error count exceeds number; stopping compilation

中文对照:(编译错误)错误太多,停止编译
分析:修改之前的错误,再次编译

2、fatal error C1004: unexpected end of file found

中文对照:(编译错误)文件未结束
分析:一个函数或者一个结构定义缺少“}”、或者在一个函数调用或表达式中括号没有配对出现、或者注释符“//”不完整等

3、fatal error C1083: Cannot open include file: ‘xxx’: No such file or directory

中文对照:(编译错误)无法打开头文件xxx:没有这个文件或路径
分析:头文件不存在、或者头文件拼写错误、或者文件为只读

4、fatal error C1903: unable to recover from previous error(s); stopping compilation

中文对照:(编译错误)无法从之前的错误中恢复,停止编译
分析:引起错误的原因很多,建议先修改之前的错误

5、error C2001: newline in constant

中文对照:(编译错误)常量中创建新行
分析:字符串常量多行书写

6、error C2006: #include expected a filename, found ‘identifier’

中文对照:(编译错误)#include命令中需要文件名
分析:一般是头文件未用一对双引号或尖括号括起来,例如“#include stdio.h”

7、error C2007: #define syntax

中文对照:(编译错误)#define语法错误
分析:例如“#define”后缺少宏名,例如“#define”

8、error C2008: ‘xxx’ : unexpected in macro definition

中文对照:(编译错误)宏定义时出现了意外的xxx
分析:宏定义时宏名与替换串之间应有空格,例如“#define TRUE"1"”

9、error C2009: reuse of macro formal ‘identifier’

中文对照:(编译错误)带参宏的形式参数重复使用
分析:宏定义如有参数不能重名,例如“#define s(a,a) (a*a)”中参数a重复

10、error C2010: ‘character’ : unexpected in macro formal parameter list

中文对照:(编译错误)带参宏的形式参数表中出现未知字符
分析:例如“#define s(r|) r*r”中参数多了一个字符‘|’

11、error C2014: preprocessor command must start as first nonwhite space

中文对照:(编译错误)预处理命令前面只允许空格
分析:每一条预处理命令都应独占一行,不应出现其他非空格字符

12、error C2015: too many characters in constant

中文对照:(编译错误)常量中包含多个字符
分析:字符型常量的单引号中只能有一个字符,或是以“\”开始的一个转义字符,例如“char error = ‘error’;”

13、error C2017: illegal escape sequence

中文对照:(编译错误)转义字符非法
分析:一般是转义字符位于 ’ ’ 或 " " 之外,例如“char error = ’ '\n;”

14、error C2018: unknown character ‘0xhh’

中文对照:(编译错误)未知的字符0xhh
分析:一般是输入了中文标点符号,例如“char error = ‘E’;”中“;”为中文标点符号

15、error C2019: expected preprocessor directive, found ‘character’

中文对照:(编译错误)期待预处理命令,但有无效字符
分析:一般是预处理命令的#号后误输入其他无效字符,例如“#!define TRUE 1”

16、error C2021: expected exponent value, not ‘character’

中文对照:(编译错误)期待指数值,不能是字符
分析:一般是浮点数的指数表示形式有误,例如123.456E

17、error C2039: ‘identifier1’ : is not a member of ‘identifier2’

中文对照:(编译错误)标识符1不是标识符2的成员
分析:程序错误地调用或引用结构体、共用体、类的成员

18、error C2041: illegal digit ‘x’ for base ‘n’

中文对照:(编译错误)对于n进制来说数字x非法
分析:一般是八进制或十六进制数表示错误,例如“int i = 081;”语句中数字‘8’不是八进制的基数

19、error C2048: more than one default

中文对照:(编译错误)default语句多于一个
分析:switch语句中只能有一个default,删去多余的default

20、error C2050: switch expression not integral

中文对照:(编译错误)switch表达式不是整型的
分析:switch表达式必须是整型(或字符型),例如“switch (“a”)”中表达式为字符串,这是非法的

21、error C2051: case expression not constant

中文对照:(编译错误)case表达式不是常量
分析:case表达式应为常量表达式,例如“case “a””中““a””为字符串,这是非法的

22、error C2052: ‘type’ : illegal type for case expression

中文对照:(编译错误)case表达式类型非法
分析:case表达式必须是一个整型常量(包括字符型)

23、error C2057: expected constant expression

中文对照:(编译错误)期待常量表达式
分析:一般是定义数组时数组长度为变量,例如“int n=10; int a[n];”中n为变量,这是非法的

24、error C2058: constant expression is not integral

中文对照:(编译错误)常量表达式不是整数
分析:一般是定义数组时数组长度不是整型常量

25、error C2059: syntax error : ‘xxx’

中文对照:(编译错误)‘xxx’语法错误
分析:引起错误的原因很多,可能多加或少加了符号xxx

26、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不是函数

27、error C2065: ‘xxx’ : undeclared identifier

中文对照:(编译错误)未定义的标识符xxx
分析:1、如果xxx为cout、cin、scanf、printf、sqrt等,则程序中包含头文件有误 2、未定义变量、数组、函数原型等,注意拼写错误或区分大小写。

28、error C2078: too many initializers

中文对照:(编译错误)初始值过多
分析:一般是数组初始化时初始值的个数大于数组长度,例如“int b[2]={1,2,3};”

29、error C2082: redefinition of formal parameter ‘xxx’

中文对照:(编译错误)重复定义形式参数xxx
分析:函数首部中的形式参数不能在函数体中再次被定义

30、error C2084: function ‘xxx’ already has a body

中文对照:(编译错误)已定义函数xxx
分析:在VC++早期版本中函数不能重名,6.0版本中支持函数的重载,函数名可以相同但参数不一样

31、error C2086: ‘xxx’ : redefinition

中文对照:(编译错误)标识符xxx重定义
分析:变量名、数组名重名

32、error C2087: ‘’ : missing subscript

中文对照:(编译错误)下标未知
分析:一般是定义二维数组时未指定第二维的长度,例如“int a[3][];”

33、error C2100: illegal indirection

中文对照:(编译错误)非法的间接访问运算符“
分析:对非指针变量使用“
”运算

34、error C2105: ‘operator’ needs l-value

中文对照:(编译错误)操作符需要左值
分析:例如“(a+b)++;”语句,“++”运算符无效

35、error C2106: ‘operator’: left operand must be l-value

中文对照:(编译错误)操作符的左操作数必须是左值 分析:
例如“a+b=1;”语句,“=”运算符左值必须为变量,不能是表达式

36、error C2110: cannot add two pointers

中文对照:(编译错误)两个指针量不能相加
分析:例如“int *pa,*pb,*a; a = pa + pb;”中两个指针变量不能进行“+”运算

37、error C2117: ‘xxx’ : array bounds overflow

中文对照:(编译错误)数组xxx边界溢出
分析:一般是字符数组初始化时字符串长度大于字符数组长度,例如“char str[4] = “abcd”;”

38、error C2118: negative subscript or subscript is too large

中文对照:(编译错误)下标为负或下标太大
分析:一般是定义数组或引用数组元素时下标不正确 error C2124: divide or mod by zero 中文对照:(编译错误)被零除或对0求余 分析:例如“int i = 1 / 0;”除数为0

39、error C2133: ‘xxx’ : unknown size

中文对照:(编译错误)数组xxx长度未知
分析:一般是定义数组时未初始化也未指定数组长度,例如“int a[];”

40、error C2137: empty character constant。

中文对照:(编译错误)字符型常量为空
分析:一对单引号“’’”中不能没有任何字符

41、error C2143: syntax error : missing ‘token1’ before ‘token2’

42、error C2146: syntax 4error : missing ‘token1’ before identifier ‘identifier’

中文对照:(编译错误)在标识符或语言符号2前漏写语言符号1
分析:可能缺少“{”、“)”或“;”等语言符号

43、error C2144: syntax error : missing ‘)’ before type ‘xxx’

中文对照:(编译错误)在xxx类型前缺少‘)’
分析:一般是函数调用时定义了实参的类型

44、error C2181: illegal else without matching if

中文对照:(编译错误)非法的没有与if相匹配的else
分析:可能多加了“;”或复合语句没有使用“{}”

45、error C2196: case value ‘0’ already used

中文对照:(编译错误)case值0已使用
分析:case后常量表达式的值不能重复出现

46、error C2296: ‘%’ : illegal, left operand has type ‘float’

47 error C2297: ‘%’ : illegal, right operand has type ‘float’

中文对照:(编译错误)%运算的左(右)操作数类型为float,这是非法的
分析:求余运算的对象必须均为int类型,应正确定义变量类型或使用强制类型转换

48、error C2371: ‘xxx’ : redefinition; different basic types

中文对照:(编译错误)标识符xxx重定义;基类型不同
分析:定义变量、数组等时重名

49、error C2440: ‘=’ : cannot convert from ‘char [2]’ to ‘char’

中文对照:(编译错误)赋值运算,无法从字符数组转换为字符
分析:不能用字符串或字符数组对字符型数据赋值,更一般的情况,类型无法转换

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

51、error C2448: ‘’ : function-style initializer appears to be a function definition

中文对照:(编译错误)缺少函数标题(是否是老式的形式表?)
分析:函数定义不正确,函数首部的“( )”后多了分号或者采用了老式的C语言的形参表

52、error C2450: switch expression of type ‘xxx’ is illegal

中文对照:(编译错误)switch表达式为非法的xxx类型
分析:switch表达式类型应为int或char

53、error C2466: cannot allocate an array of constant size 0

中文对照:(编译错误)不能分配长度为0的数组
分析:一般是定义数组时数组长度为0

54、error C2601: ‘xxx’ : local function definitions are illegal

中文对照:(编译错误)函数xxx定义非法
分析:一般是在一个函数的函数体中定义另一个函数

55、error C2632: ‘type1’ followed by ‘type2’ is illegal

中文对照:(编译错误)类型1后紧接着类型2,这是非法的
分析:例如“int float i;”语句

56、error C2660: ‘xxx’ : function does not take n parameters

中文对照:(编译错误)函数xxx不能带n个参数
分析:调用函数时实参个数不对,例如“sin(x,y);”

57、error C2664: ‘xxx’ : cannot convert parameter n from ‘type1’ to ‘type2’

中文对照:(编译错误)函数xxx不能将第n个参数从类型1转换为类型2
分析:一般是函数调用时实参与形参类型不一致

58、error C2676: binary ‘<<’ : ‘class istream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator error C2676: binary ‘>>’ : ‘class ostream_withassign’ does not define this operator or a conversion to a type acceptable to the predefined operator

分析:“>>”、“<<”运算符使用错误,例如“cin<>y;”

59、error C4716: ‘xxx’ : must return a value

中文对照:(编译错误)函数xxx必须返回一个值
分析:仅当函数类型为void时,才能使用没有返回值的返回命令。

60、fatal error LNK1104: cannot open file “Debug/Cpp1.exe”

中文对照:(链接错误)无法打开文件Debug/Cpp1.exe
分析:重新编译链接

61、fatal error LNK1168: cannot open Debug/Cpp1.exe for writing

中文对照:(链接错误)不能打开Debug/Cpp1.exe文件,以改写内容。
分析:一般是Cpp1.exe还在运行,未关闭

62、fatal error LNK1169: one or more multiply defined symbols found

中文对照:(链接错误)出现一个或更多的多重定义符号。
分析:一般与error LNK2005一同出现

63、error LNK2001: unresolved external symbol _main

中文对照:(链接错误)未处理的外部标识main
分析:一般是main拼写错误,例如“void mian()”

64、error LNK2005: _main already defined in Cpp1.obj

中文对照:(链接错误)main函数已经在Cpp1.obj文件中定义
分析:未关闭上一程序的工作空间,导致出现多个main函数

65、warning C4003: not enough actual parameters for macro ‘xxx’

中文对照:(编译警告)宏xxx没有足够的实参
分析:一般是带参宏展开时未传入参数

66、warning C4067: unexpected tokens following preprocessor directive - expected a newline

中文对照:(编译警告)预处理命令后出现意外的符号 - 期待新行
分析:“#include;”命令后的“;”为多余的字符

67、warning C4091: ‘’ : ignored on left of ‘type’ when no variable is declared

中文对照:(编译警告)当没有声明变量时忽略类型说明
分析:语句“int ;”未定义任何变量,不影响程序执行

68、warning C4101: ‘xxx’ : unreferenced local variable

中文对照:(编译警告)变量xxx定义了但未使用
分析:可去掉该变量的定义,不影响程序执行

69、warning C4244: ‘=’ : conversion from ‘type1’ to ‘type2’, possible loss of data

中文对照:(编译警告)赋值运算,从数据类型1转换为数据类型2,可能丢失数据
分析:需正确定义变量类型,数据类型1为float或double、数据类型2为int时,结果有可能不正确,数据类型1为double、数据类型2为float时,不影响程序结果,可忽略该警告

70、warning C4305: ‘initializing’ : truncation from ‘const double’ to ‘float’

中文对照:(编译警告)初始化,截取双精度常量为float类型
分析:出现在对float类型变量赋值时,一般不影响最终结果

71、warning C4390: ‘;’ : empty controlled statement found; is this the intent?

中文对照:(编译警告)‘;’控制语句为空语句,是程序的意图吗?
分析:if语句的分支或循环控制语句的循环体为空语句,一般是多加了“;”

72、warning C4508: ‘xxx’ : function should return a value; ‘void’ return type assumed

中文对照:(编译警告)函数xxx应有返回值,假定返回类型为void
分析:一般是未定义main函数的类型为void,不影响程序执行 c语言的错误对照表———— 在遇到错误时可以对照查看

73、warning C4552: ‘operator’ : operator has no effect; expected operator with side-effect

中文对照:(编译警告)运算符无效果;期待副作用的操作符
分析:例如“i+j;”语句,“+”运算无意义

74、warning C4553: ‘==’ : operator has no effect; did you intend ‘=’?

中文对照:(编译警告)“”运算符无效;是否为“=”?
分析:例如 “i
j;” 语句,“==”运算无意义

75、warning C4700: local variable ‘xxx’ used without having been initialized

中文对照:(编译警告)变量xxx在使用前未初始化
分析:变量未赋值,结果有可能不正确,如果变量通过scanf函数赋值,则有可能漏写“&”运算符,或变量通过cin赋值,语句有误

76、warning C4715: ‘xxx’ : not all control paths return a value

中文对照:(编译警告)函数xxx不是所有的控制路径都有返回值
分析:一般是在函数的if语句中包含return语句,当if语句的条件不成立时没有返回值

77、warning C4723: potential divide by 0

中文对照:(编译警告)有可能被0除
分析:表达式值为0时不能作为除数

78、warning C4804: ‘<’ : unsafe use of type ‘bool’ in operation

中文对照:(编译警告)‘<’:不安全的布尔类型的使用
分析:例如关系表达式“0<=x<10”有可能引起逻辑错误

参考:

C语言常见编译错误及分析

C语言常见编译错误分类及其解决方案

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/265253.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

面经——嵌入式常见面试题总结100题(上)

更多干货推荐可以去牛客网看看&#xff0c;他们现在的IT题库内容很丰富&#xff0c;属于国内做的很好的了&#xff0c;而且是课程刷题面经求职讨论区分享&#xff0c;一站式求职学习网站&#xff0c;最最最重要的里面的资源全部免费&#xff01;&#xff01;&#xff01;点击进…

计算机专业运动会口号,运动会口号押韵有气势 计算机系霸气口号

淡泊明志&#xff0c;宁静致远&#xff0c;团结友爱&#xff0c;顽强拼搏。下面是文艺范收集的运动会口号押韵有气势&#xff0c;计算机系霸气口号&#xff0c;欢迎阅读收藏。1、球进了球&#xff0c;分了就会&#xff0c;不怕**&#xff0c;战无不胜。2、阳光运动&#xff0c;…

1. 观察者模式总结(C++)

1. 介绍 观察者模式&#xff1a;定义了一种“一对多”的依赖关系&#xff0c;让多个观察者对象同时监听一个对象的改变&#xff0c;即当该对象的状态发现改变时&#xff0c;会通知所有它依赖的观察者对象。观察者模式属于行为模式。 意图&#xff1a;定义对象间的一种一对多的依…

面经——嵌入式常见面试题总结100题(下)

更多干货推荐可以去牛客网看看&#xff0c;他们现在的IT题库内容很丰富&#xff0c;属于国内做的很好的了&#xff0c;而且是课程刷题面经求职讨论区分享&#xff0c;一站式求职学习网站&#xff0c;最最最重要的里面的资源全部免费&#xff01;&#xff01;&#xff01;点击进…

学计算机要不要护发,脱发平时应该注意什么 四个妙招教你如何防止脱发

头发一掉&#xff0c;失去的不仅仅是发丝&#xff0c;还有美丽与颜值&#xff0c;一把把辛酸泪只能往肚子里吞。秃头星人们&#xff0c;如果已经脱发了&#xff0c;日常一定要加倍注意哦&#xff0c;一些错误的护发方法不要踩坑&#xff0c;护理、食疗、良好的生活作息&#xf…

面经——嵌入式软件工程师ARM体系与架构相关

参考&#xff1a;嵌入式软件工程师笔试面试指南-ARM体系与架构 作者&#xff1a;嵌入式与Linux那些事 发布时间&#xff1a; 2021-04-28 15:22:06 网址&#xff1a;https://blog.csdn.net/qq_16933601/article/details/116234673 目录 ARM体系与架构硬件基础NAND FLASH 和NOR F…

下列属于计算机人工智能应用领域的是多选题,每天五道选择题(10)

原标题&#xff1a;每天五道选择题(10)1.在Windows7操作系统中&#xff0c;磁盘维护包括硬盘检查、磁盘清理和碎片整理等功能&#xff0c;磁盘清理的目的是( )。A.提高磁盘存取速度B.获得更多磁盘可用空间C.优化磁盘文件存储D.改善磁盘的清洁度▼答案&#xff1a;B【解析】磁盘…

2019年3月未来教育计算机二级题库,2019年3月计算机二Access考试操作模拟试题001...

2019年3月计算机二Access考试操作模拟试题001浏览次数&#xff1a; 时间&#xff1a;2019/03/28一、基本操作题在考生文件夹中有一个“Acc1.mdb”数据库。(1)在“订单”表的“订单ID”和“客户”字段之间添加“产品ID”和“数量”字段。其中&#xff0c;“产品ID”字段的类…

面经——C/C++常见面试知识点总结附面试真题

参考&#xff1a;C/C 面试题 作者&#xff1a;zhaouc 发布时间&#xff1a; 2015-02-15 15:51:00 网址&#xff1a;https://blog.csdn.net/zhaouc/article/details/43835667 参考&#xff1a;C/C常见面试知识点总结附面试真题----20210529更新 作者&#xff1a;kuweicai 发布时…

计算机控制课程设计体会,计算机控制技术课程设计报告

1课程设计目的…………………………………………………1页码2课程设计题目描述和要求……………………………………1页码3.课程设计报告内容……………………………………………1页码4.心得体会………………………………………………………7页码5.参考数目……………………………

tomcat源码 Connector

Connector容器主要负责解析socket请求&#xff0c;在tomcat中的源码位于org.apache.catalina.connector和org.apache.coyote包路径下&#xff1b;通过上两节的分析&#xff0c;我们知道了Connector是Service的子容器&#xff0c;而Service又是Server的子容器。在server.xml文件…

快速对比UART、SPI、I2C通信的区别与应用

参考&#xff1a;带你快速对比SPI、UART、I2C通信的区别与应用&#xff01; 作者&#xff1a;一口Linux 网址&#xff1a;https://mp.weixin.qq.com/s/4_RSM2jk2W6nTboO1W8HCw 电子设备之间的通信就像人类之间的交流&#xff0c;双方都需要说相同的语言。在电子产品中&#xff…

U-Boot 移植

目录NXP官方开发板uboot编译测试查找NXP官方的开发板默认配置文件_defconfig配置编译NXP官方开发板对应的uboot烧写验证与驱动测试(定位缺少的驱动)在NXP官方U-Boot 中添加自己的开发板添加开发板默认配置文件添加开发板对应的头文件(mx6ull_alientek_emmc.h)添加开发板对应的板…

打印某个进程下的所有线程--Linux环境

2019独角兽企业重金招聘Python工程师标准>>> 1、ps -mp <进程ID> -o THREAD 在当前用户下&#xff0c;列出pid包含的所有线程。 2、ps -mp <进程ID> -o THREAD,tid 在当前用户下&#xff0c;列出pid包含的所有线程信息及本地线程ID (tid)。 3、ps -…

JavaScript笔记(3)

•位操作符 所有的按位操作符的操作数都会被转成补码形式的有符号的32位整数。 运算符用法描述按位与&#xff08;AND&#xff09;a & b对于每一个比特位&#xff0c;只有两个操作数相应的比特位都是1时&#xff0c;结果才为1&#xff0c;否则为0。按位或&#xff08;OR&am…

Linux 内核顶层Makefile 详解

目录前602行分析make xxx_defconfig 过程Makefile.build 脚本分析make 过程built-in.o 文件编译生成过程make zImage 过程前几章我们重点讲解了如何移植uboot 到I.MX6U-ALPHA 开发板上&#xff0c;从本章开始我们就开始学习如何移植Linux 内核。同uboot 一样&#xff0c;在具体…

android第三次作业

界面&#xff1a; 主要代码&#xff1a; 1.定义一个工具类&#xff0c;在这个类中获取音频文件&#xff0c;并且对歌曲名、歌手和时间等进行格式规范&#xff1a; package com.example.administrator.music;import android.content.Context; import android.database.Cursor; i…

python try 异常处理 史上最全

在程序出现bug时一般不会将错误信息显示给用户&#xff0c;而是现实一个提示的页面&#xff0c;通俗来说就是不让用户看见大黄页&#xff01;&#xff01;&#xff01; 有时候我们写程序的时候&#xff0c;会出现一些错误或异常&#xff0c;导致程序终止. 为了处理异常&#xf…

Spring+Spring Security+JSTL实现的表单登陆的例子

2019独角兽企业重金招聘Python工程师标准>>> Spring Security允许开发人员轻松地将安全功能集成到J2EE Web应用程序中&#xff0c;它通过Servlet过滤器实现“用户自定义”安全检查。 在本教程中&#xff0c;我们将向您展示如何在Spring MVC中集成Spring Security 3…

数学教师计算机能力提升,深度融合信息技术,提升数学课堂魅力

原标题&#xff1a;深度融合信息技术&#xff0c;提升数学课堂魅力2018年小学数学教学与信息技术深度融合专题网络教研活动2018年10月31日&#xff0c;我校数学科组根据北片指导中心文件精神&#xff0c;进行了一次小学数学教学与信息技术深度融合专题网络教研活动。本次教研活…