我需要将一个大的二进制文件(~1GB)读入std::vector<double>
。我目前正在使用infile.read
将整个内容复制到char *
缓冲区(如下所示),我目前计划将整个内容转换为doubles
reinterpret_cast
。肯定有办法将doubles
直接放入vector
?
我也不确定二进制文件的格式,数据是在python中生成的,所以它可能都是浮点数
ifstream infile(filename, std--ifstream--binary);
infile.seekg(0, infile.end); //N is the total number of doubles
N = infile.tellg();
infile.seekg(0, infile.beg);
char * buffer = new char[N];
infile.read(buffer, N);
答案 0 :(得分:9)
假设整个文件是双倍的,否则这将无法正常工作。
std::vector<double> buf(N / sizeof(double));// reserve space for N/8 doubles
infile.read(reinterpret_cast<char*>(buf.data()), buf.size()*sizeof(double)); // or &buf[0] for C++98