char ch;
cin>>ch;
while (cin.fail()==false)
{
cout<<ch;
cin>>ch;
}
cout<<endl;
//无法识别空格
cin.get(ch);
while(cin.eof()==false){
cout<<ch;
cin.get(ch);
}
//可以识别空格
这里cin.get(ch)是把ch当参数载体放入函数,调回一个结果,所以ch应该是一个地址位置,而不是一个变量,在c语言中,这句话错了。无法调回一个结果。但是C++中支持引用当参数,所以cin.get(引用参数)可以调回一个我们需要的结果。
// cin.eof() == true ? cin.fail() == true ? (ch = cin.get()) == EOF ?
// cin.get(ch) & ch = cin.get() -> next one
// cin.get(str,size) -> end up with enter
// cin>>ch; -> ignore whitespace and end up with enter