今天偶然写了下面的程序(原来我写的程序不一样,下面的只是为了把问题简化)
- void foo()
- {
- int p = 0;
- if ( p == 0 )
- int i = 0;
- int a;
- }
-
- int main()
- {
- foo();
- }
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/fancylea/archive/2009/06/10/4256793.aspx
不幸的是偶然将这个文件保存成了test.c,然后编译的时候出现了
error, error C2143: syntax error : missing ';' before 'type'
感觉很奇怪,细细看来所有的语法都似乎都是对的,更奇怪的是把文件改成cpp或者cc能正常编译,把int a;和if调换下也能正常编译。这样的错误可能发生在当变量的声明放在可执行代码之后。而这个是在K&R C中规定的,但在ANSI C中废除。
MSDN (http://support.microsoft.com/kb/58559)给出的解释如下:
In Microsoft C, compiler errors C2143 and C2144 are defined as follows:
C2143: syntax error : missing 'token1' before 'token2'
C2144: syntax error : missing 'token' before type 'type'
You may receive this error message if your program places executable code before a data declaration, an acceptable practice in Kernighan-and-Ritchie C. This practice has been outlawed in later versions of the ANSI drafts.
This error message will normally occur if a required closing curly brace (}), right parenthesis [)], or semicolon (;) is missing.
注: The C Programming Language的作者简称K&R,也是C语言之父, 经常用K&R C来和ANSI C做对比。这本书的第二版已经用ANSI.
我用的编译器是VS2008, 看来微软向来无视标准。
总结:
在 ANSI C或者C++中,在可执行代码中随时定义变量是允许的,但是在K&R C中是不允许的,VS2008实现的C竟然是K&R C。注意这样的错误也体现在VS中要是用for (int i = 0; i++; i<10)同时你的文件名是.c的也会出现这样的错误。
Code complete中讨论过变量名的最迟绑定有利于增加代码的可读性等。所以在VS中写c要注意了。