gpt4 book ai didi

c++ - 在 C++ 中使用 std::ofstream 创建具有随机文件名的文件时出现问题

转载 作者:行者123 更新时间:2023-11-28 07:15:22 26 4
gpt4 key购买 nike

我有这段代码,我正在努力使其发挥作用(不对)现在它创建了一个大文件,但我希望它生成一系列随机命名的文件。

#include <iostream>
#include <string>
#include <time.h>
#include <stdlib.h>
#include <fstream>

using namespace std;
string random(int len)
{
string a = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
string r;
srand(time(NULL));
for(int i = 0; i < len; i++) r.push_back(a.at(size_t(rand() % 62)));
return r;
}

int main(){
std::ofstream o("largefile.txt");

o << random(999) << std::endl;

return 0;
}

我试图添加它,但我在 std::ofstream

中收到有关数据类型的错误
std::string file=random(1);
std::ofstream o(file);

最佳答案

std::string file=random(1);
std::ofstream o(file);

应该是:

std::string file=random(1);
std::ofstream o(file.c_str());

因为 ofstream 的构造函数需要 const char*


还可以考虑使用以下函数代替 rand() % 62:

inline int irand(int min, int max) {
return ((double)rand() / ((double)RAND_MAX + 1.0)) * (max - min + 1) + min;
}

...

srand(time(NULL)); // <-- be careful not to call srand in loop
std::string r;
r.reserve(len); // <-- prevents exhaustive reallocation
for (int i = 0; i < len; i++)
r.push_back( a[irand(0,62)] );

关于c++ - 在 C++ 中使用 std::ofstream 创建具有随机文件名的文件时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20319613/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com