题目:
练习8.7
修改上一节的书店程序,将结果保存到一个文件中。将输出文件名作为第二个参数传给main函数。
个人解答:
这两道题其实也没有什么难度。
这里需要知道如何创建输出流,以及输出流的简单使用。
8.7中,可以将print()中的内容,直接使用<< 定向到ofstream的对象中。
例如:
<pre name="code" class="cpp">// ...
ofstream outfile("result.txt");
//...
outfile << print(output, total)
// ...
当然,程序每次运行都会将result.txt中的内容冲掉。
所以,这里需要在打开文件的时候,定位在文件的末尾
练习8.8
修改上一题的程序,将结果追加到给定文件末尾。对同一个输出文件,运行程序两次,检验数据是否得以保留。
个人解答:
【引用】保留被ofstream打开的文件中已有数据的唯一办法是显式指定app或in模式。
这段引用就足以解答8.8.
可以在上面的段程序上修改一下
<pre name="code" class="cpp">// ...
ofs.open("test.txt", std::ofstream::in | std::ofstream::app);
//...
outfile << print(output, total)
// ...
或者
// ...
ofs.open("test.txt" std::ofstream::app);
//...
outfile << print(output, total)
// ...
或者
// ...
ofs.open("test.txt", std::ofstream::in);
//...
outfile << print(output, total)
// ...
这三种方式都可以对文件内容进行追加。