使用ofstream输出数据时令人暴寒的错误!0A = 0D 0A?

类别:编程语言 点击:0 评论:0 推荐:

前一阵子用C++写东西,需要往文件里写数据,很简单的代码,大概是这个样子:

#include <fstream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
 ofstream fout;
 fout.open("d:\\test.dat");
 
 int a = 0x7788;

 fout.write((char*) &a, sizeof(int));
}

打开test.dat,内容是77 88 00 00,很正常。

本文地址:http://com.8s8s.com/it/it21858.htm