gpt4 book ai didi

c++二进制写入或读取

转载 作者:搜寻专家 更新时间:2023-10-31 00:36:44 26 4
gpt4 key购买 nike

当我尝试将文本转换为二进制格式时遇到问题:

如以下代码所述,它适用于 test3.txt 或 test4.txt,但是,fout3.write(str1.data() ,len);不适用于 test5.txt(这让我很困惑)所以我使用了 fout3.write(reinterpret_cast<char *>(& str1) ,len);相反,它运作良好。

#include <cassert>
#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main(void)
{
ofstream fout("test3.txt", ios::out | ios::binary);
fout << "ABC\n";
fout.close();

int test = 111;
ofstream fout1("test4.txt", ios::out | ios::binary);
fout1.write(reinterpret_cast<char *>(&test), sizeof(int));
fout1.close();

int test2;
ifstream fin("test4.txt", ios::in | ios::binary);
fin.read(reinterpret_cast<char *>(&test2), sizeof(int));
cout << test2 << endl;

string str1 = "ATEGWGEf";
int len = str1.length();
cout << str1.data() << endl;
ofstream fout3("test6.txt", ios::out | ios::binary);
// fout3.write(str1.data() ,len);
fout3.write(reinterpret_cast<char *>(& str1) ,len);
fout3.close();

string line;
ifstream fin2("test6.txt", ios::in | ios::binary);
fin2.read(reinterpret_cast<char *>(&line),300);
cout << line << endl;

return 0;
}

但是另一个问题出现了。当我试图读取刚刚写入的 test6.txt 时, 它因这样的错误而失败。

*** glibc detected *** ./binary_file.debug: double free or corruption (fasttop): 0x0000000001e4c260 ***
======= Backtrace: =========
/lib64/libc.so.6[0x3155275366]
/usr/lib64/libstdc++.so.6(_ZNSsD1Ev+0x39)[0x317209d4c9]
./binary_file.debug[0x4010f3]
/lib64/libc.so.6(__libc_start_main+0xfd)[0x315521ecdd]
./binary_file.debug[0x400d69]
======= Memory map: ========
......................
01e4a000-01e6b000 rw-p 00000000 00:00 0 [heap]
3154a00000-3154a20000 r-xp 00000000 fd:00 3031286 /lib64/ld-2.12.so
3154c1f000-3154c20000 r--p 0001f000 fd:00 3031286 /lib64/ld-2.12.so
3154c20000-3154c21000 rw-p 00020000 fd:00 3031286 /lib64/ld-2.12.so
3154c21000-3154c22000 rw-p 00000000 00:00 0
3155200000-3155389000 r-xp 00000000 fd:00 3033037 /lib64/libc-2.12.so
3155389000-3155588000 ---p 00189000 fd:00 3033037 /lib64/libc-2.12.so
3155588000-315558c000 r--p 00188000 fd:00 3033037 /lib64/libc-2.12.so
315558c000-315558d000 rw-p 0018c000 fd:00 3033037 /lib64/libc-2.12.so
315558d000-3155592000 rw-p 00000000 00:00 0
3155600000-3155683000 r-xp 00000000 fd:00 3033062 /lib64/libm-2.12.so
3155683000-3155882000 ---p 00083000 fd:00 3033062 /lib64/libm-2.12.so
3155882000-3155883000 r--p 00082000 fd:00 3033062 /lib64/libm-2.12.so
3155883000-3155884000 rw-p 00083000 fd:00 3033062 /lib64/libm-2.12.so
3171c00000-3171c16000 r-xp 00000000 fd:00 3014674 /lib64/libgcc_s-4.4.7-20120601.so.1
3171c16000-3171e15000 ---p 00016000 fd:00 3014674 /lib64/libgcc_s-4.4.7-20120601.so.1
3171e15000-3171e16000 rw-p 00015000 fd:00 3014674 /lib64/libgcc_s-4.4.7-20120601.so.1
3172000000-31720e8000 r-xp 00000000 fd:00 1719247 /usr/lib64/libstdc++.so.6.0.13
31720e8000-31722e8000 ---p 000e8000 fd:00 1719247 /usr/lib64/libstdc++.so.6.0.13
31722e8000-31722ef000 r--p 000e8000 fd:00 1719247 /usr/lib64/libstdc++.so.6.0.13
31722ef000-31722f1000 rw-p 000ef000 fd:00 1719247 /usr/lib64/libstdc++.so.6.0.13
31722f1000-3172306000 rw-p 00000000 00:00 0
7f1142209000-7f114220e000 rw-p 00000000 00:00 0
7f114222d000-7f1142230000 rw-p 00000000 00:00 0
7fff7ff9c000-7fff7ffb1000 rw-p 00000000 00:00 0 [stack]
7fff7ffff000-7fff80000000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
Aborted (core dumped)

连同这个错误,我不小心成功地将二进制 test6.txt 转换为文本。我真的很想知道为什么以及如何修复这个错误。

谢谢!

最佳答案

您不能只将指向类的指针转换为 char* 并将数据写入文件。例如,您希望如何解释指针?读取时它们不再指向有效地址,写入时无需考虑,只需写入地址即可。

关于c++二进制写入或读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21100394/

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