是一个编译错误的编号。比如在VC中这个错误编号表示标识符(变量名或者函数名)前缺少必要的东西。
Compiler Error C2146
syntax error : missing 'token' before identifier 'identifier'
The compiler expected the given token to appear before the given identifier.
Tips
This error is usually preceeded by error C206
5. The most typical cause of this error is a typographical problem. For example:
void main(void)
{
intt x; //Syntax error: missing semicolon before 'x'
}
声明:本文由作者上传并发布,本网站仅提供信息发布平台,文章仅代表作者个人观点,不代表本网站立场,内容旨在传播知识,若有侵权等问题请及时与本网站联系,我们将在第一时间删除处理。