码迷,mamicode.com
首页 > 其他好文 > 详细

for_each函数

时间:2015-05-19 19:05:36      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:c++

for_each函数的用法

std::for_each(cpths.begin(), cpths.end(), print);

其中print函数为

void print(const std::string& e)
{
	std::cout << e << std::endl;
}

以上语句 等价于:

std::vector<std::string>::const_iterator iter = cpths.begin();  
	for (; iter != cpths.end(); ++iter)
	{
		cout<<*iter<<endl;
	}


for_each函数

标签:c++

原文地址:http://blog.csdn.net/xiao_lxl/article/details/45847443

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!