在VS2010環境下編了下面一段代碼:
#include
#include
#include
using namespace std;
int main()
{
list lvec;
string str;
cout<<"Enter some string:"<
while(cin>>str)
{
lvec.push_back(str);
}
for(list::iterator iter=lvec.begin();iter!=lvec.end();iter++)
{
cout<<*iter<<endl;
}
return 0;
}
問題來了:!!
我輸入若干字符串(以空格間隔開),敲擊enter,console窗口裡什麼也沒有??!!結果不應該是將push_back進容器的所有字符串全部cout打印輸出嗎?請大神指點迷津,感激涕零!!
不是回車,參見
http://blog.chinaunix.net/uid-7195747-id-2677224.html
講的很詳細了。