65 C 檔案讀寫

2021-09-26 14:19:28 字數 833 閱讀 1803

寫檔案

ofstream  ofs

open 指定開啟方式

isopen 判斷是否開啟成功

ofs << 「資料」

ofs.close

讀操作

ifstream  ifs

指定開啟方式 ios::in

isopen判斷是否開啟成功

三種方式讀取資料

#define _crt_secure_no_warnings

#includeusing namespace std;

//檔案讀寫標頭檔案

#include //寫檔案

void test01()

ofs << "姓名:abc" << endl;

ofs << "年齡:100" << endl;

ofs << "性別:男" << endl;

ofs.close();

}//讀檔案

void test02()

//第一種方式

//char buf[1024];

//while (ifs >>buf) //按行讀取

// //第二種方式

//char buf2[1024];

//while (!ifs.eof()) //eof讀到檔案尾

// //第三種 不推薦 按單個字元讀取

char c;

while ( (c = ifs.get() ) != eof) // eof檔案尾

ifs.close();

}int main()

65 c 異常處理(下)

catch語句塊中可以丟擲異常 trycatch int i 將捕獲的異常重寫丟擲 catch 沒有名字,直接丟擲 catch中丟擲的異常需要外層try.catch.捕獲 為啥要重新丟擲異常 catch中捕獲的異常可以被重新解釋後丟擲。工程開發中使用這樣的方式統一異常型別 第三方庫 void fun...

c 檔案讀寫 文字讀寫

include int main else return 0 格式 intfscanf file stream,constchar format,返回值 如果成功,該函式返回成功匹配和賦值的個數。如果到達檔案末尾或發生讀錯誤,則返回 eof 引數1 file stream 檔案指標 引數2 cons...

C 檔案讀寫

原文 http www.vckbase.com document viewdoc id 1439 原作 john peregrine file i o using c 序論 我曾發表過檔案輸入輸出的文章,現在覺得有必要再寫一點。檔案 i o 在c 中比烤蛋糕簡單多了。在這篇文章裡,我會詳細解釋asc...