3

我必须在 N 个文件上创建和写入,每个人都必须有一个整数结尾来识别它。

这是我的一段代码:

for(int i=0; i<MAX; i++)
{
    uscita.open("nameFile"+i+".txt", ios::out); 
    uscita <<  getData() << endl;
    uscita.close();     
}

这就是我想在执行后在我的目录中找到的内容:

nameFile0.txt
nameFile1.txt
nameFile2.txt
...
nameFileMAX.txt

上面代码的问题是我得到了编译错误:

错误 C2110:“+”无法添加两个指针

如果我尝试为名称创建一个字符串,则会出现另一个问题:

string s ="nameFile"+i+".txt";
uscita.open(s, ios::out); 

问题是:

错误 C2664:您无法从字符串转换为const wchar_t*

我能做些什么?如何创建具有不同名称的文件连接intwchar_t*

4

3 回答 3

3

您可以使用std::to_wstring

#include <string>

// ...

std::wstring s = std::wstring("file_") + std::to_wstring(i) + std::wstring(".dat");

s.c_str()如果您需要 C 风格,则使用wchar_t*。)

于 2011-12-24T16:03:24.613 回答
2

你可以使用一个wstringstream

std::wstringstream wss;
wss << "nameFile" << i << ".txt";
uscita.open(wss.str().c_str(), ios::out);
于 2011-12-22T21:23:27.613 回答
0

这更容易和更快:

wchar_t fn[16];
wsprintf(fn, L"nameFile%d.txt", i);
uscita.open(fn, ios::out);
于 2011-12-23T08:43:52.353 回答