MSVS 2015 getline()函数不起作用? (C ++)

时间:2015-08-09 22:08:47

标签: c++

错误:标识符" getline"未定义。我在俯瞰什么?

#include "stdafx.h"
#include <iostream>
#include<conio.h>
using namespace std;

int main()
{
string str;
getline(cin, str);
getch();
return 0;
}

1 个答案:

答案 0 :(得分:1)

您需要添加

#include <string>

可以使用std::stringstd::getline()。没有这个甚至是行

string str;

很可能会产生编译错误。