- 一、解析如下:
C++头文件——何时要加.h,何时不加.h,何时在前面加c?
C++中不要#include
a. 如果这个头文件是旧C++特有的,那么去掉 h后缀,并放入std名字空间,
比如 iostream.h 变为 iostream.
因此,若要使用iostream库中函数,文件包含为
#include
using namespace std;
若只写#include ,而没有using namespace std;,
会报错:error C2065: ‘cout’ : undeclared identifier,
因为cout是在std中命名的,必须加上using namespace std;
可能在早期的编译器中,也支持#include
b. 如果这个头文件是C也有的,那么去掉 h后缀,增加一个c前缀, 比如 string.h变为 cstring;stdio.h 变为 cstdio, 等等
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)