如何使用 C++ 以二进制模式将向量写入文件?
Posted
技术标签:
【中文标题】如何使用 C++ 以二进制模式将向量写入文件?【英文标题】:how to write a vector to a file in binary mode using c++? 【发布时间】:2013-12-09 05:20:26 【问题描述】:到目前为止,我已经尝试过了,
#include<iostream>
#include<fstream>
#include <stdlib.h>
#include<vector>
using namespace std;
int main()
unsigned short array[3]=0x20ac,0x20ac,0x20ac;
vector<unsigned short> v;
std::ofstream file;
file.open("1.txt", std::ios_base::binary);
file.write((char*)(array), sizeof(array));
v.push_back(array[0]);
v.push_back(array[1]);
v.push_back(array[2]);
file.write((char *)v,sizeof(v));
file.close();
我收到一条错误消息 stan.cpp:在函数“int main()”中: stan.cpp:21:23:错误:从类型“std::vector”到类型“char*”的无效转换。
【问题讨论】:
你可以看看这里:***.com/questions/2469531/… 【参考方案1】:您应该将每个元素一个接一个地写入,或者将整个数据写入write(v.data(), v.size() * sizeof(unsigned short))
【讨论】:
适用于字节顺序相关性的常用 cmets。 (即,如果您从小端机器写入数据,则在读取它时您必须在大端机器上做额外的工作,反之亦然。) 可以,字节序要根据代码的实际使用情况来考虑。 我喜欢sizeof(v[0])
胜过sizeof(unsigned short)
,因为如果有人愚蠢地改变了向量的类型,第一种形式不需要更新,因此遵循DRY原则。【参考方案2】:
你要找到指向第一个元素的指针,然后通过v * sizeof一个元素的元素个数来计算字节数:
file.write((char*)(&v[0]), v.size() * sizeof(v[0])) ;
输出:
% od -x 1.txt
0000000 20ac 20ac 20ac
【讨论】:
以上是关于如何使用 C++ 以二进制模式将向量写入文件?的主要内容,如果未能解决你的问题,请参考以下文章