不包含algorithm头文件也能使用count函数

来源:互联网  时间:2016/8/31 13:11:07

关于网友提出的“ 不包含algorithm头文件也能使用count函数”问题疑问,本网通过在网上对“ 不包含algorithm头文件也能使用count函数”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:

问题: 不包含algorithm头文件也能使用count函数
描述:

algorithm头文件

如题,C++Primer第五版英文版P378的Exercise10.1
说algorithm定义了count函数
但是我没包含这个头文件也照样能用count函数
#include 
#include 
using std::vector;
int main()
{
vector iv = { 1, 0, 9, 2, 3, 8, 5, 7, 3, 8, 9, 4, 5, 8, 9, 3, 4, 7, 5, 8, 9, 0, 7, 3, 0, 4, 5, 9, 3, 8, 9, 4, 5, 7, 0, 3, 8, 4, 9, 2, 7, 5 };
std::cout << "The number of value 5: " << std::count(iv.begin(), iv.end(), 5) << std::endl;
return 0;
}

解决方案1:

引用 2 楼 mujiok2003 的回复:
那你运气比较好,看看这里

我运气不好,点不开“这里” 不包含algorithm头文件也能使用count函数解决方案2:

应该是std名字空间已经有了count的声明了吧。

解决方案3:

引用 4 楼 shanfeng00041 的回复:
Quote: 引用 2 楼 mujiok2003 的回复:

那你运气比较好,看看这里

我运气不好,点不开“这里” 不包含algorithm头文件也能使用count函数

http://ideone.com/JtDbli 解决方案4:

那你运气比较好,看看这里

解决方案5:

间接包含了呗

上一篇C++小白求助公用字符串初始化方法
下一篇C++小白求教一个头文件问题
明星图片
相关文章
《 不包含algorithm头文件也能使用count函数》由码蚁之家搜集整理于网络,
联系邮箱:mxgf168#qq.com(#改为@)