[Error] 'find' was not declared in this scope; did you mean 'std::find'?
时间: 2024-05-24 07:15:29 浏览: 153
codeblocks中报错:'to_string' was not declared in this scope解决方案
5星 · 资源好评率100%
这个错误通常是因为你在代码中使用了 `find` 函数,但是你没有在代码中声明或者引入 `find` 函数所在的命名空间。
解决方法是在代码中加上 `using namespace std;` 或者使用 `std::find` 来代替 `find` 函数。前者会将 `std` 命名空间中的所有函数引入到当前命名空间中,后者则直接使用 `std` 命名空间中的 `find` 函数。
阅读全文