cin与getline区别C++

虽然可以使用 cin 和 >> 运算符来输入字符串,但它可能会导致一些需要注意的问题。

当 cin 读取数据时,它会传递并忽略任何前导白色空格字符(空格、制表符或换行符)。一旦它接触到第一个非空格字符即开始阅读,当它读取到下一个空白字符时,它将停止读取。以下面的语句为例:

cin >> namel;
可以输入 “Mark” 或 “Twain”,但不能输入 “Mark Twain”,因为 cin 不能输入包含嵌入空格的字符串。下面程序演示了这个问题:

// This program illustrates a problem that can occur if
// cin is used to read character data into a string object.
#include <iostream>
#include <string> // Header file needed to use string objects
using namespace std;

int main()
{
    string name;
    string city;
    cout << "Please enter your name: ";
    cin >> name;
    cout << "Enter the city you live in: ";
    cin >> city;
    cout << "Hello, " << name << endl;
    cout << "You live in " << city << endl;
    return 0;
}


程序输出结果:

Please enter your name: John Doe
Enter the city you live in: Hello, John
You live in Doe

请注意,在这个示例中,用户根本没有机会输入 city 城市名。因为在第一个输入语句中,当 cin 读取到 John 和 Doe 之间的空格时,它就会停止阅读,只存储 John 作为 name 的值。在第二个输入语句中, cin 使用键盘缓冲区中找到的剩余字符,并存储 Doe 作为 city 的值。

为了解决这个问题,可以使用一个叫做 getline 的 C++ 函数。此函数可读取整行,包括前导和嵌入的空格,并将其存储在字符串对象中。

getline 函数如下所示:

getline(cin, inputLine);
其中 cin 是正在读取的输入流,而 inputLine 是接收输入字符串的 string 变量的名称。下面的程序演示了 getline 函数的应用:

// This program illustrates using the getline function
//to read character data into a string object.
#include <iostream>
#include <string> // Header file needed to use string objects
using namespace std;

int main()
{
    string name;
    string city;
    cout << "Please enter your name: ";
    getline(cin, name);
    cout << "Enter the city you live in: ";
    getline(cin, city);
    cout << "Hello, " << name << endl;
    cout << "You live in " << city << endl;
    return 0;
}


程序输出结果:

Please enter your name: John Doe
Enter the city you live in: Chicago
Hello, John Doe
You live in Chicago

补充:
cin.get()获取一个字符
cin.getline() 获取一行字符串
getline(cin,s)是C的,获取一行字符串

  • 3
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
C++中,getline()和cin.getline()都可以用来读取一行输入,但它们之间有一些区别getline()函数是一个标准库函数,可以从任何输入流中读取一行文本,包括文件和键盘输入。它的语法如下: ```c++ getline(istream& is, string& str, char delim); ``` 其中,is是输入流,str是存储读取行的字符串,delim是可选的分隔符,如果没有指定分隔符,则默认为换行符。 相比之下,cin.getline()是一个istream类的成员函数,只能从标准输入流中读取一行文本。它的语法如下: ```c++ cin.getline(char* str, int n, char delim); ``` 其中,str是存储读取行的字符数组,n是字符数组的大小,delim是可选的分隔符,如果没有指定分隔符,则默认为换行符。 因此,getline()函数比cin.getline()更灵活,可以从任何输入流中读取一行文本,并且可以使用string类型存储读取行。而cin.getline()只能从标准输入流中读取一行文本,并且只能使用字符数组存储读取行。 以下是一个使用getline()函数的例子: ```c++ #include <iostream> #include <string> using namespace std; int main() { string str; getline(cin, str); cout << "this is the getline: " << str << endl; return 0; } ``` 以下是一个使用cin.getline()函数的例子: ```c++ #include <iostream> using namespace std; int main() { char ch[20]; cin.getline(ch, 10); cout << "this is the cin.getline: " << ch << endl; return 0; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值