12 2 1重學C 之 寫二進位制檔案

2021-10-22 13:54:00 字數 440 閱讀 2044

#include#include#include#includeusing namespace std;

/* 5.2.1 寫二進位制檔案

二進位制方式寫檔案主要利用流物件呼叫成員函式write

函式原型 :ostream & write(const char * buffer, int len);

引數解釋:字元指標buffer指向記憶體中一段儲存空間。len是讀寫的位元組數

*/class person;

void test1();

ofs.write((const char *)&p, sizeof(person));

ofs.close();

// 寫入的檔案,直接開啟可能會有亂碼,正常,因為二進位制,能夠用程式讀取回來就ok

}int main()

C 之寫讀二進位制檔案

c 中對檔案的簡單讀寫操作步驟 1.呼叫標頭檔案 fstream 2.建立輸出流物件 ofstream寫 ifstream讀 fstream可讀可寫 3.開啟檔案ofs.open 檔案路徑 開啟方式 常用開啟方式 1.ios in 以讀檔案開啟檔案 2.ios out 寫 3.ios binary ...

C 二進位制檔案寫操作

include fstream.h main for inti 0 i 9 i ofstream rs ok2002com.bin ios binary 開啟二進位制檔案ok2002com.bin 注意 開啟二進位制檔案時,訪問模式設定為 ios binary for i 0 i 9 i rs.cl...

C 二進位制檔案寫操作

include fstream.h main for inti 0 i 9 i ofstream rs ok2002com.bin ios binary 開啟二進位制檔案ok2002com.bin 注意 開啟二進位制檔案時,訪問模式設定為 ios binary for i 0 i 9 i rs.cl...