c++之從標準流中提取文本資料

來源:互聯網
上載者:User

標籤:

istream & istream :: get ( char * ,  int ,  char = ‘\n‘ ) ;

istream & istream :: getline ( char * ,  int ,  char = ‘\n‘ ) ;

作用:從文本中提取指定個數的字元,並在串數組末添加一個Null 字元

其中,第一個參數指向接受字元資料的字元數組

第二個參數指定字元數組最多可容納的字元個數

第三個參數用於指定一個終止符,預設為分行符號

操作遇到終止符或提取到規定個數字元時,提取終止

區別:  get ( ) 不從流中提取終止字元,終止字元仍在輸入資料流中

         getline ( ) 從流中提取終止字元,但終止字元被丟棄

 

 1 #include<iostream> 2 using namespace std; 3 int main ( ) 4 { char  buf [ 80 ] ; 5    cin.get ( buf , 80 , ‘y‘ ) ;        //指定終止符 6    cout << buf << endl ;    //預設終止符‘\n‘ 7    cin.get ( buf , 80 ) ;      8    cout << buf << endl ; 9    cin.getline ( buf , 80 , ‘n‘ ) ;10    cout << buf << endl ;11    cin.get ( buf , 80 ) ;     12    cout << buf << endl ;13    return 0;14 }
 1 #include<iostream> 2 #include<fstream> 3 using namespace std; 4 int main ( ) 5 { ifstream  inf ( "d:\\testnew" ) ;        6    char  buf [ 80 ] ; 7    inf.getline ( buf, 80 ) ;             8    cout << buf << "____" << inf.gcount() << endl ; 9    inf.get( buf, 80 ) ;    10    cout << buf << "____" << inf.gcount() << endl ;11    inf.close () ;12 }

 

c++之從標準流中提取文本資料

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.