std::string file = "Cell.txt";
myfile.open (file);
在当前程序文件夹中生成一个文件。我不希望文件与编写它们的程序混合在一起。
std::string file = "Cell\\Cell.txt";
什么都不做
std::cout << file << '\n';
打印Cell \ Cell.txt
我甚至试过std::string file = "\\Cell\\Cell.txt";
没想到这会起作用,但无论如何都试过了
std::string file = "\\\\Cell\\\\Cell.txt";
我以前做过,并且无法在网上提供任何帮助