1. cin.getline()函数
处理数组字符串的,其原型为cin.getline(char * , int),第一个参数为一个char指针,第二个参数为数组字符串长度。
getline(cin,str)函数是处理string类的函数。第二个参数为string类型的变量。
实例:
#include <iostream>
#include <string>
using namespace std;
const int SIZE=20;
int main()
{
string str;
cout<<"string method:"<<endl;
getline(cin,str);
cout<<"the string is:"<<endl;
cout<<str<<endl;
}
2. cin.get();//接受最后一个结束符
char chs[SIZE];
cout<<"char * method:"<<endl;
cin.getline(chs,20);
cout<<"the string is:"<<endl;
cout<<chs<<endl;
return 0;
}
运行结果:
string method:
Hello String
the string is:
Hello String
char * method:
Hello Char *
the string is:
Hello Char *
注:getline(cin,str);处理后还留有结束符在输入流中,故需要使用cin.get();//接受最后一个结束符,才能接受后面得输入值。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/163019.html