cin.get()和cin.getline()之間的區別_C 語言

來源:互聯網
上載者:User

cin.getline()和cin.get()都是對輸入的面向行的讀取,即一次讀取整行而不是單個數字或字元,但是二者有一定的區別。

cin.get()每次讀取一整行並把由Enter鍵產生的分行符號留在輸入隊列中,比如:

複製代碼 代碼如下:

#include <iostream>
using std::cin;
using std::cout;
const int SIZE = 15;
int main( ){
cout << "Enter your name:";
char name[SIZE];
cin.get(name,SIZE);
cout << "name:" << name;
cout << "\nEnter your address:";
char address[SIZE];
cin.get(address,SIZE);
cout << "address:" << address;
}

輸出:
Enter your name:jimmyi shi
name:jimmyi shi
Enter your address:address:

在這個例子中,cin.get()將輸入的名字讀取到了name中,並將由Enter產生的分行符號'/n'留在了輸入隊列(即輸入緩衝區)中,因此下一次的cin.get()便在緩衝區中發現了'/n'並把它讀取了,最後造成第二次的無法對地址的輸入並讀取。解決之道是在第一次調用完cin.get()以後再調用一次cin.get()把'/n'符給讀取了,可以組合式地寫為cin.get(name,SIZE).get();。

cin.getline()每次讀取一整行並把由Enter鍵產生的分行符號拋棄,如:

複製代碼 代碼如下:

#include <iostream>
using std::cin;
using std::cout;
const int SIZE = 15;
int main( ){
cout << "Enter your name:";
char name[SIZE];
cin.getline(name,SIZE);
cout << "name:" << name;
cout << "/nEnter your address:";
char address[SIZE];
cin.get(address,SIZE);
cout << "address:" << address;
}

輸出:
Enter your name:jimmyi shi
name:jimmyi shi
Enter your address:YN QJ
address:YN QJ

由於由Enter產生的分行符號被拋棄了,所以不會影響下一次cin.get()對地址的讀取。
如果cin.get()是一個一個字元的讀入,但是cin.get()不會忽略任何字元,對於斷行符號符需要單獨處理。

兩點注意:
(1) 學會區別get()與getline();
(2)分行符號號是\n,而不是/n;

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.