C Primer 標準IO庫雜記

2021-06-02 08:33:52 字數 791 閱讀 5311

trunc 清空

#include#include#includeusing namespace std;

istream& io(istream& input)

cout<

stringstream 物件的乙個常見用法是,需要在多種資料型別之間實現自動

格式化時使用該類型別。例如,有乙個數值型資料集合,要獲取它們的 string 表

示形式,或反之。sstream 輸入和輸出操作可自動地把算術型別轉化為相應的 

string 表示形式,反過來也可以。 

#include#include#includeusing namespace std;

int main()

int main()

{ ofstream ofs;

writesstr(ofs,"input.txt");

vectorline;

readline(line,"input.txt");

vector::iterator it=line.begin();//定義迭代器

istringstream in;

while(it!=line.end())//遍歷

{ in.str(*it);

//將乙個string型別的物件繫結到istringstream的物件中

string str;

while(in>>str)//遍歷該string物件中的內容

{ if(str=="believe")//如果有單詞「believe」

{cout<<*it<

C 標準IO庫 C Primer學習筆記

頭檔案型別 iostream istream 從流中讀取 ostream 寫到流中去 iostream對流進行讀寫,從istream和ostream派生而來 fstream ifstream 從檔案中讀取,由istream派生而來 ofstream 寫到檔案中去,由ostream派生而來 fstre...

《C Primer4》附錄 標準庫io庫的使用

1 輸出為bool型別格式為true和false,需要使用cout boolalpha,取消bool字母格式輸出使用 cout 2 將整型int i 10,按各種進製輸出的格式如下 八進位制輸出 cout 如果輸出需要帶上標記 0,0x 需要宣告為 cout showbase hex i 如果標記大...

C primer(八)標準輸入輸出(標準IO)

1.io標準庫型別和標頭檔案 iostream 輸入輸出流 fstream 檔案讀寫 sstream 讀取儲存在記憶體中的string類。處於某些原因,io物件不可賦值或者複製。檔案輸出的 include stdafx.h include include using namespace std is...