文字列をバイナリファイルに書き込むのに問題があります。これは私のコードです:
ofstream outfile("myfile.txt", ofstream::binary);
std::string text = "Text";
outfile.write((char*) &text, sizeof (string));
outfile.close();
それから、読んでみます、
char* buffer = (char*) malloc(sizeof(string));
ifstream infile("myfile.txt", ifstream::binary);
infile.read(buffer, sizeof (prueba));
std::string* elem = (string*) buffer;
cout << *elem;
infile.close();
私はそれを機能させることができません。すみません、私はただ必死です。ありがとうございました!