据我所知,提取运算符在开始时跳过空白,并在遇到空白或流结束时停止. noskipws可用于停止忽略前导空格.
我有以下程序,我使用过noskipws.
#include <iostream> using namespace std; int main() { char name[128]; cout<<"Enter a name "; cin>>noskipws>>name; cout<<"You entered "<<name<<"\n"; cout<<"Enter another name "; cin>>name; cout<<"You entered "<<(int)name[0]<<"\n"; return 0; }
我的疑问是:
>如果我输入“John”作为第一个输入,那么第二个cin>>操作不等待输入,也不会将任何内容复制到目标,即名称数组.我期待第二个cin>>转移至少一个换行符或流的结尾,而不是仅仅将目标字符串设置为空.为什么会这样?
>当我输入“John Smith”作为第一个cin>>的输入时,观察到同样的事情.声明.为什么不是第二个cin>>语句将空格或“Smith”复制到目标变量?
以下是该计划的输出:
Enter a name John You entered John Enter another name You entered 0 Enter a name John Smith You entered John Enter another name You entered 0
谢谢!!!