1. 程式人生 > >C++11 新特性之 序列for循環

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

return 新特性 art tor href mes 定義 數組 pac

版權聲明:本文為博主原創文章。未經博主同意不得轉載。 https://blog.csdn.net/lr982330245/article/details/30971195

在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循環