Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在构建项目时,我收到了这个神秘的错误:
“find_if”不是“std”的成员
find_if() 以这种方式使用:std::find_if(...)。
知道它可能来自哪里吗?
添加包含:
#include <algorithm>
到你的实现文件。
你有没有包括标题
你需要#include <algorithm>
包含<algorithm>头文件:
<algorithm>