我一直在尝试将文件包含在包含的文件中,例如
main.cpp文件
#includeint main(){ cout< includedfile.cpp
#includeusing namespace std; string name; name = "jim"; 这个代码不起作用,debuger说名字没有定义.
1> Sander..:你不能在方法之外存在语句!
name = "jim"; // This is outside of any method, so it is an error.你可以重构你的代码,所以变量声明也是一个初始赋值,它应该是有效的(我的C++有点生疏,所以我可能在这一点上错了).
string name = "jim";