fatal error C1083: Cannot open include file: ✀cstring.h✀: No such file or directory 怎么改啊

2024-12-14 04:33:32
推荐回答(2个)
回答1:

cstring是c++头文件,风格是把c头文件.h去掉,然后在前面加上c
比如stdio.h改成cstdio,math.h改成cmath。
主要是因为引入了命名空间,所以注意要using namespace std;之类使用命名空间

回答2:

不同的编译器头文件名是不一样的,TC好象是Cstring.h,VC好象是string.h所以具体情况具体分析,你可以通过查看帮助来确定你的编译器的头文件的名字,祝你好运。