vc6.0下的getline的使用

vc6.0编译器的对getline函数的支持是有限的。

我在编写程序的时候出现了不少的麻烦,但用下面的代码就可以通过编译了

#pragma warning(disable:4786) #include <string> #include <iostream> using namespace std ; void main() { string s1; cout << "Enter a sentence (use <space> as the delimiter):"; getline(cin,s1, ' '); cout << "You entered: " << s1; }

你可能感兴趣的:(String,编译器)