C 基礎 二十一 檔案操作

2021-10-09 23:18:17 字數 886 閱讀 4517

檔案開啟方式

ios::in             //讀檔案開啟檔案

ios::out           //寫檔案開啟檔案

ios::ate //初始位置:檔案尾

ios::trunc //如果檔案存在,先刪除再建立

ios::binary //二進位制方式

1.以文字形式       寫檔案

#include using namespace std;

#include void test24()

int main()

2.以文字形式       讀檔案

#include using namespace std;

#include #include void test25()

//4.讀取資料

/* char buf[1024] = ;

while (ifs >> buf)

*//*

char buf[1024] = ;

while (ifs.getline(buf,sizeof(buf)))

*//*

string buf;

while (getline(ifs, buf))

*/char c;

while ((c = ifs.get()) !=eof) //eof end of line

//5 關閉流

ifs.close();

}int main()

python二十一 檔案操作

檔案處理流程 1.開啟檔案,得到檔案控制代碼並賦值給乙個變數 2.通過控制代碼對檔案進行操作 3.關閉檔案 r 檔案讀模式 f open undo r encoding utf 8 讀取檔案資料 data f.read print data 關閉檔案控制代碼 f.close 判斷檔案是否可讀 f.r...

python基礎(二十一) 操作SQLite

python操作 使用內建模組sqlite3 游標cursor 引數化查詢 null 什麼都不存 integer 整型 real 親源型別 浮點型 text 包含文字 blob 二進位制大型物件,是乙個可以儲存大量資料的容器 增刪改查 select from 表名 insert into 表名 列1...

C語言開發總結(二十一)

c語言記憶體管理分析 歡迎進入記憶體這片雷區。偉大的bill gates 曾經失言 640k ought to be enough for everybody bill gates 1981 程式設計師們經常編寫記憶體管理程式,往往提心吊膽。如果不想觸雷,唯一的解決辦法就是發現所有潛伏的地雷並且排除...