标签: c++ stl
哪一个更好,更受欢迎?我真的觉得阅读API令人困惑。
答案 0 :(得分:9)
成员版本读入char*,免费版本读入std::string。所以更喜欢免费版!像这样使用它:
char*
std::string
std::istream & ins = /* ... */; std::string line; while (std::getline(ins, line)) { // process line }