您好,登錄后才能下訂單哦!
這篇文章主要介紹C/C++中二進制文件和順序讀寫有什么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
二進制文件不同于文本文件, 它可以用于任何類型的文件 (包括文本文件).
對于數值數據, ASCII 形式與二進制形式不同. ASCII 文件直觀, 便于閱讀, 但一般占存儲空間較多, 而且需要花時間轉換. 二進制文件是計算機的內部形式, 節省空間且不需要轉換, 但不能直觀顯示.
對于字符信息, 在內存中是以 ASCII 代碼形式存放, 無論用 ASCII 文件輸出還是用二進制文件輸出, 形式是一樣的.
#include <fstream> #include <iostream> using namespace std; int main() { int x = 12345; ofstream outfile("binary.txt", ios::binary); outfile.write((char*)&x, 2); // 寫入 outfile.close(); // 釋放 return 0; }
輸出結果:
將 int x = 12345 寫入文件.
#include <fstream> #include <iostream> using namespace std; int main() { int x = 12345; ofstream outfile("ASCII.txt"); outfile << x << endl; // 寫入 outfile.close(); // 釋放 return 0; }
輸出結果:
打開方式:
ofstream a("file1.dat", ios::out | ios::binary); ifstream b("file2.dat",ios::in | ios::binary);
文件讀寫方式:
istream& read(char *buffer,int len); ostream& write(const char * buffer,int len);
char *buffer 指向內存中一段存儲空間
int len 是讀寫的字節數
例子:
將 p1 指向的空間中 50 個字節存入文件對象 a:
a.write(p1,50)
從文件對象 b 讀出 30 個字節, 存址指向空間:
b.read(p2,30)
將數據以二進制的形式存放在磁盤中.
#include <fstream> #include <iostream> #include "Student.h" using namespace std; int main() { Student stud[2] = { {01, "Little White"}, {01, "Big White"} }; ofstream outfile("student.dat", ios::binary); if(!outfile){ cerr << "open error" << endl; exit(1); // 退出程序 } for (int i = 0; i < 2; ++i) { outfile.write((char*)&stud[i], sizeof(stud[i])); } cout << "任務完成, 請查看文件" << endl; outfile.close(); return 0; }
將二進制文件中的數據讀入內存.
#include <fstream> #include <iostream> #include "Student.h" using namespace std; int main() { Student stud[2]; ifstream infile("student.dat", ios::binary); if(!infile){ cerr << "open error" << endl; exit(1); // 退出程序 } // 讀取數據 for (int i = 0; i < 2; ++i) { infile.read((char*)&stud[i], sizeof(stud[i])); } infile.close(); // 顯示數據 for (int i = 0; i < 2; ++i) { stud[i].display(); } return 0; }
以上是“C/C++中二進制文件和順序讀寫有什么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。