istream中的类(如cin)提供了一些面向行的类成员函数:getline()和get()。这两个函数都读取一行输入,直到达到换行符。不同的是,getline()将丢弃换行符,而get()将换行符保留在输入序列中。
目录
一、字符串 I/O
二、string类 I/O
一、字符串 I/O
1.面向行的输入:getline()
getline()函数读取整行,它使用通过回车键输入的换行符来确定输入结尾。要调用这种方法,可以使用cin.getline()。该函数有两个参数,第一个参数是用来存储输入行的数组的名称,第二个参数是要读取的字符数。
ex:cin.getline(typename,size).
#include <iostream>
using namespace std;
int main()
{const int ArSize = 20;char name[ArSize];char dessert[ArSize];cout << "Enter your name:\n";cin.getline(name,ArSize);cout << "Enter your favorite dessert:\n";cin.getline(dessert,ArSize);cout << "I have some delicious " << dessert;cout << " for you , " << name << ".\n"; return 0;
}
2.面向行的输入:get()
get()与getline()接受的参数相同,解释参数的方式也相同,并且都读取到行尾。但并不再读取并丢弃换行符,而是将其留在输入队列中。
ex:cin.get(typename,size).
当第一次调用后,换行符留在输入队列中,因此第二次调用时看到的第一个字符便是换行符。因此get()认为已经到达行尾,而没有发现任何可读取的内容。
此时可借用get()的另一种变体,使用不带任何参数的cin.get()调用可读取下一个字符(即使是换行符)。
因此可以用它来处理换行符,为读取下一行输入做好准备。
ex:
cin.get(typename,size);
cin.get();
cin.get(typename,size);
另一种使用get()的方式是将两个类成员函数拼接起来:
cin.get(typename,size).get();
#include <iostream>
using namespace std;
int main()
{const int ArSize = 20;char name[ArSize];char dessert[ArSize];cout << "Enter your name:\n";cin.get(name,ArSize).get();cout << "Enter your favorite dessert:\n";cin.get(dessert,ArSize).get();cout << "I have some delicious " << dessert;cout << " for you , " << name << ".\n"; return 0;
}
二、string类 I/O
1.使用string对象的方式与使用字符数组相同
- 可以使用C-风格字符串来初始化string对象。
- 可以使用cin来将键盘输入存储到string对象。
- 可以使用cout来显示string对象。
- 可以使用数组表示法来访问存储在string对象中的字符。
2.get(cin,str)方法
#include<iostream>
#include<cstring>
using namespace std;
//字符数组i/o
int main()
{char charr1[20];char charr2[20];cout << "Enter your first name:\n";cin.get(charr1,20).get();cout << "Enter your last name:\n";cin.get(charr2,20).get();strcat(charr1,charr2);cout << "Here's the information in a single string :\n";cout << charr1;return 0;
}
//string类i/o
int main()
{string str1,str2;cout << "Enter your first name:";getline(cin,str1);cout << "Enter your first name:";getline(cin,str2);cout << "Here's the information in a single string :";cout << str1 << " , " << str2;cout << "\n";string str3;cout << "Enter third name:";cin >>str3;cout << "str3 = " << str3;return 0;
}
3.string类的其他操作
-
可以使用函数strcpy()将字符串复制到字符数组中。
-
可以使用函数strcat()将字符串附加到字符数组末尾。
ex: strcpy(charr1,charr2) strcat(charr1,charr2)