名称空间std没有成员any_of

时间:2019-12-21 10:01:15

标签: c++

我正在尝试查看字符串是否包含数字。当我在该站点上搜索时,我看到了说std::any_of(password.begin(), password.end(), ::isdigit)的实现,并且应该返回布尔值true或false。 但是,Visual Studio一直说名称空间std没有成员any_of。

1 个答案:

答案 0 :(得分:2)

std::any_of位于<algorithm>标头中,您需要添加标头:

#include <algorithm>

Reference