C 作为 C 的子集:异常解释
虽然经常说 C 是 C 的子集,但在某些情况下代码可以在 C 中无缝编译,但在 C 中失败。
代码的情况在 C 中失败
暂定定义:
C 允许多次声明同一变量名,但 C 禁止这样做,并显示错误“n 已经定义。”
int n; int n; // error: redeclaration of 'n'
不兼容的数组类型:
C 允许将数组分配给不同类型的指针(例如,int[1] 到 int * ()),而 C 不允许这样
int a[1]; int (*ap)[] = &a; // error: 'a' does not have type 'int[]'
K&R 函数定义样式:
C 允许使用语法 int b(a) int a; 进行函数定义; { },但 C 认为这是语法错误。
int b(a) int a; { } // error: grammar error
嵌套结构体作用域:
C 允许使用类作用域声明嵌套结构体,但是C 将它们视为局部变量
struct A { struct B { int a; } b; int c; }; struct B b; // error: 'b' has incomplete type
默认声明:
C 允许声明变量而不指定其类型(例如 auto a;),但 C 需要显式声明类型说明符。
auto a; // error: type-specifier missing
C99 中的其他例外
参数中的数组维度:
C99 禁止在数组中使用像 static 这样的说明符函数参数的维度。
void f(int p[static 100]) { } // error: invalid syntax
可变长度数组:
C99 不支持可变长度数组 (VLA),其中数组大小计算为
int n = 1; int an[n]; // error: 'n' is not a constant expression
灵活数组成员:
C99 缺少可以在其中包含可变大小数据成员的灵活数组成员 (FAM)结构体。
struct A { int a; int fam[]; }; // error: 'fam' has incomplete type
限制限定符:
C99 允许限制限定符指定内存的非别名,这是 C 不支持的。
void copy(int *restrict src, int *restrict dst); // error: two names for one parameter
以上是为什么有些C代码在C中编译失败?的详细内容。更多信息请关注PHP中文网其他相关文章!