在打开文件时,无论是调用 open 还是以文件名作为流初始化的一部分,都需指定文件模式(file mode)。...
std::ios::trunc 打开文件时,此模式将丢弃输出文件的所有内容。 与“std::ios::out”的唯一区别是丢弃内容的时间,这次提到的内容没有特别的区别。 #include <iostream> #include <fstream> int main(){ std::ofstream ofs("output.txt", std::ios::trunc); ofs << "Hello World!"; return 0; } 1....