流操作的特性

2021-06-04 02:11:45 字數 467 閱讀 7513

char msg[100];

memset(msg,0,sizeof(msg));

file *pfile = fopen("msg.txt","r");

memset(msg,0,sizeof(msg));

fread(msg,sizeof(char),sizeof(msg),pfile);

cout << msg << endl;

//這行**在這裡很重要,不加的話就體會到流的特性了

//fseek(pfile,0,seek_set);

memset(msg,0,sizeof(msg));

fread(msg,sizeof(char),sizeof(msg),pfile);

cout << msg << endl;

fclose(pfile);

資料流如果取出就消失了,上面幾行**做出實驗。

列印流特性

構造方法,就是列印流的輸出目的端。printstream,構造方法,接收file型別,接收字串檔名,接收位元組輸出流outputstream printwriter,構造方法,接收file型別,接收字串檔名,接收位元組輸出流,接收字元輸出流writer public static void func...

資料操作流 記憶體操作流 列印流

資料操作流 目前基本沒用 datasource.自己查詢把 記憶體操作流 用來處理臨時儲存資訊的,程式結束時,資料就從記憶體中消失 操作位元組 bytearrayoutputstream 輸出流 寫入操作 bytearrayinputstream 輸入流 讀取資料 字元陣列 chararrayrea...

檔案流的操作

ps 今天記錄一下關於io操作的東西,以前總是在複製別人的 前天終於有時間好好研究一下。研究下來,其實覺得還是蠻充實的,就覺得終於懂的差不多了,以前總覺得查查網上就行了,反正是很簡單的 不過,我想正因為簡單,越簡單的 越要懂得越全越多才好。一 檔案流的讀。using filestream strea...