标签: c++11 ofstream
我正在编写经常使用文件I / O的代码。 我必须写10个文件,反之亦然。 代码如下:
ofstream of1("file1"); ofstream of2("file2"); ofstream of3("file3"); ... ofstream of10("file10");
这似乎是一个混乱的代码。 有没有办法以紧凑的格式表示那些?