码迷,mamicode.com
首页 > 编程语言 > 详细

C++11 新特性之 序列for循环

时间:2014-06-15 10:46:30      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   使用   

在C++中在C++中for循环可以使用类似java的简化的for循环,可以用于遍历数组,容器,string以及由begin和end函数定义的序列(即有Iterator)


#include <iostream>
#include <map>
#include <string>
using namespace std;

int main()
{	
	map<string, int> ms;
	ms.insert(make_pair("a", 1));
	ms.insert(make_pair("b", 2));
	ms.insert(make_pair("c", 3));
	ms.insert(make_pair("d", 4));
	
	for (auto itr: ms)
		cout << itr.first << ":" << itr.second << endl;
		
	int a[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
	for (auto itr: a)
		cout << itr << endl;
		
	char str[10] = "Hello";
	for (auto itr : str)
		cout << itr;
	cout << endl;
	
	string _str = "Hello";
	for (auto itr : _str)
		cout << itr;
	cout << endl; 
	
	return 0;
}



C++11 新特性之 序列for循环,布布扣,bubuko.com

C++11 新特性之 序列for循环

标签:style   class   blog   code   java   使用   

原文地址:http://blog.csdn.net/aspnet_lyc/article/details/30971195

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