C STL删除错误

前端之家收集整理的这篇文章主要介绍了C STL删除错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法理解我的代码出错了:
#include <iostream>

#include <string>

using namespace std;

int main(int argc,char* argv[]) {
    string str = "";
    cin >> str;
    remove(str.begin(),str.end(),' ');
    cout << str;
    cin.ignore();
}

错误说“’remove’:function不需要3个参数(C2660)”

解决方法

尝试添加
#include <algorithm>

“算法”是一个包含很多功能的STL头,包括std :: remove,OP正在尝试调用.他得到的错误是因为还有一个函数需要一个名为“remove”的单个参数,该函数删除一个文件.

原文链接:https://www.f2er.com/c/111906.html

猜你在找的C&C++相关文章