您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何在C++中使用getline()函數,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
getline()用法
getline是C++標準庫函數;它有兩種形式,一種是頭文件< istream >中輸入流成員函數;一種在頭文件< string >中普通函數;
它遇到以下情況發生會導致生成的本字符串結束:
(1)到文件結束,(2)遇到函數的定界符,(3)輸入達到最大限度。
輸入流成員函數getline()
函數語法結構:
在< istream >中的getline()函數有兩種重載形式:
istream& getline (char* s, streamsize n ); istream& getline (char* s, streamsize n, char delim );
作用是: 從istream中讀取至多n個字符(包含結束標記符)保存在s對應的數組中。即使還沒讀夠n個字符,
如果遇到delim 或 字數達到限制,則讀取終止,delim都不會被保存進s對應的數組中。
代碼實例
#include <iostream> using namespace std; int main() { char name[256]; cout << "Please input your name: "; cin.getline(name, 256); cout << "The result is: " << name << endl; return 0; }
#include <iostream> using namespace std; int main( ) { char line[100]; cout << " Type a line terminated by 't'" << endl; cin.getline( line, 100, 't' ); cout << line << endl; return 0; }
普通函數getline()
函數語法結構:
在< string >中的getline函數有四種重載形式:
istream& getline (istream& is, string& str, char delim); istream& getline (istream&& is, string& str, char delim); istream& getline (istream& is, string& str); istream& getline (istream&& is, string& str);
函數的變量:
is :表示一個輸入流,例如 cin。
str :string類型的引用,用來存儲輸入流中的流信息。
delim :char類型的變量,所設置的截斷字符;在不自定義設置的情況下,遇到'\n',則終止輸入
用法和上一種類似,但是讀取的istream是作為參數is傳進函數的。讀取的字符串保存在string類型的str中。
代碼實例
#include <iostream> #include <string> using namespace std; int main() { string name; cout << "Please input your name: "; getline(cin, name); cout << "Welcome to here!" << name << endl; return 0; }
#include <iostream> #include <string> using namespace std; int main() { string name; cout << "Please input your name: "; getline(std::cin, name, '#'); cout << "Welcome to here!" << name << endl; return 0; }
關于如何在C++中使用getline()函數就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。