Closed. This question needs to be more focused。它当前不接受答案。
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
6年前关闭。
我读过很多书,其中C是C ++的子集。
一些书说C是C ++的子集,除了一些小细节。
在什么情况下代码可以用C而不是C ++进行编译,在什么情况下?
int []和int [N]不兼容(C ++中没有兼容的类型)
没有K&R函数定义样式
嵌套结构在C ++中具有类作用域
没有默认的int
C99增加了很多其他情况
对参数的数组维中的声明说明符无特殊处理
没有可变长度的数组
没有灵活的数组成员
没有限制限定符可帮助进行别名分析
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
6年前关闭。
我读过很多书,其中C是C ++的子集。
一些书说C是C ++的子集,除了一些小细节。
在什么情况下代码可以用C而不是C ++进行编译,在什么情况下?
最佳答案
如果将C89
与C++
进行比较,则有几件事
C ++中没有暂定定义
int n;
int n; // ill-formed: n already defined
int []和int [N]不兼容(C ++中没有兼容的类型)
int a[1];
int (*ap)[] = &a; // ill-formed: a does not have type int[]
没有K&R函数定义样式
int b(a) int a; { } // ill-formed: grammar error
嵌套结构在C ++中具有类作用域
struct A { struct B { int a; } b; int c; };
struct B b; // ill-formed: b has incomplete type (*not* A::B)
没有默认的int
auto a; // ill-formed: type-specifier missing
C99增加了很多其他情况
对参数的数组维中的声明说明符无特殊处理
// ill-formed: invalid syntax
void f(int p[static 100]) { }
没有可变长度的数组
// ill-formed: n is not a constant expression
int n = 1;
int an[n];
没有灵活的数组成员
// ill-formed: fam has incomplete type
struct A { int a; int fam[]; };
没有限制限定符可帮助进行别名分析
// ill-formed: two names for one parameter?
void copy(int *restrict src, int *restrict dst);
关于c++ - C在哪里不是C++的子集? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21324831/
10-11 08:03