所以我熟悉C ++并且在写入文本文件时遇到这个问题它还会写入内存位置吗?这是我的源代码。
std::ofstream userprefs;
srand(time(0));
int studentID = rand() % (99999 - 4 * 55) + 5 / 2;
std::string studentIDString = std::to_string(studentID);
userprefs.open("studentInformation.txt", std::ofstream::out | std::ofstream::app);
std::cout << "The Student ID is sID-"+ studentIDString +" (Copy everything including the sID.\nyou can also find this in the studentInformation.txt file.)"<< std::endl;
userprefs << std::cout << "the sID is sID-"+ studentIDString << std::endl;
userprefs.close();
当我打开它生成的文本文件时,我得到了我认为的内存吗?
0x804b164 the sID is sID-33921
如何将其隐藏或仅生成此内容?如果不是记忆,有人可以告诉我这究竟是什么吗?我还想指出我正在使用G ++,并将build标志设置为C ++ 11。
答案 0 :(得分:6)
你不应该做userprefs << std::cout
。它在文件中写入std::cout
的地址。