getline()编译没有std ::

时间:2017-07-19 08:30:19

标签: c++ string getline

我做了一些代码,发现getline()编译时没有std :: namespace。

这怎么工作?是因为C函数getline()?

以下是示例代码:

#include <string>
#include <iostream>

int main(){
    std::string s;
    getline(std::cin, s);
}

0 个答案:

没有答案