字串檔案流的實現

2021-08-13 10:31:26 字數 1150 閱讀 9299

#include

#include

using namespacestd

;intmain()

}for(intj=0

;j<150

;j++)

}//求和與相除,結果寫進去

inta[150],b[150],c[100],d[100];

for(inttemp1=0

;temp1<150

;temp1++)

}//使用結束用,要切斷流和檔案的關係(只有一種方法)

ifile1.close();ofile1.close();ifile2.close();ofile2.close();ofile3.close();ofile5.close();

/* 檔案流的另一種方式*/

fstream file;

//宣告乙個物件

file.open("/users/riverspace/mycpp/data6.txt");

//用物件成員函式開啟檔案

if(!file)

//對文字檔案進行處理

charch1;

charch2 = "nanjing"

;charch3[20];

char*p4;

cin.get(ch1);

cout

"請輸入ch3,20位"

'l');

file<"ch3已輸出到data6.txt"

//關閉文字檔案

p4=ch3;

cout<<

"p4="

<return0

;}

c 中的流,位元組,字元,字串

首先要明白它們本身是由什麼組成的 流 二進位制 位元組 無符號整數 字元 unicode編碼字元 字串 多個unicode編碼字元 那麼在.net下它們之間如何轉化呢?一般是遵守以下規則 流 位元組陣列 字元陣列 字串 下面就來具體談談轉化的語法 流 位元組陣列 memorystream ms ne...

字串 字元流的解碼與編碼

string s 中國 byte bytes s.getbytes gbk string ss new string bytes,gbk string ss new string bytes,0,len system.out.print ss 結果為byte型別的陣列字元流抽象基類 reader w...

replace 實現字串替換 字串

字串是 不可改變 的,我們通過可以獲取字串指定位置的字元,但不能使用更改指定位置的字元,一旦更改,就會報錯。a abcedfghijklmnopqrstuvwxyz a 3 a traceback most recent call last file line 1,in a 3 a typeerro...