C++中,get和getline函数的区别

cin.getline()和cin.get()都是对输入的面向行的读取,即一次读取整行而不是单个数字或字符,但是二者有一定的区别。
cin.get()每次读取一整行并把由Enter键生成的换行符留在输入队列中,比如:

#include 
using namespace std;
const int SIZE = 15;
int main( ){

    char name[SIZE];
    char address[SIZE];

    cout << "Enter your name:";
    cin.get(name,SIZE);
    cout << "name:" << name;

    cout << "\nEnter your address:";
    cin.get(address,SIZE);
    cout << "address:" << address;
    return 0;
}

在这个例子中,cin.get()将输入的名字读取到了name中,并将由Enter生成的换行符’\n’留在了输入队列(即输入缓冲区)中,因此下一次的cin.get()便在缓冲区中发现了’\n’并把它读取了,最后造成第二次的无法对地址的输入并读取。解决之道是在第一次调用完cin.get()以后再调用一次cin.get()把’\n’符给读取了,可以组合式地写为cin.get(name,SIZE).get();。

#include 
using namespace std;
const int SIZE = 15;
int main( ){

    char name[SIZE];
    char address[SIZE];

    cout << "Enter your name:";
    cin.get(name,SIZE).get();// 修改后的get方法可以正确得到结果
    cout << "name:" << name;

    cout << "\nEnter your address:";
    cin.get(address,SIZE);
    cout << "address:" << address;
    return 0;
}

cin.getline()每次读取一整行并把由Enter键生成的换行符抛弃,如:

#include 
using namespace std;
const int SIZE = 15;
int main( ){

    char name[SIZE];
    char address[SIZE];

    cout << "Enter your name:";
    cin.getline(name,SIZE);    //此处为getline
    cout << "name:" << name;

    cout << "\nEnter your address:";
    cin.get(address,SIZE);
    cout << "address:" << address;
    return 0;
}

由于由Enter生成的换行符被抛弃了,所以不会影响下一次cin.get()对地址的读取。

你可能感兴趣的:(学习笔记)