我是靠谱客的博主 爱撒娇铅笔,最近开发中收集的这篇文章主要介绍C++增强for循环,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

         for循环是常见的代码语句,常规的for循环如下

#include <iostream>

using namespace std;

int main()
{
	int array[] = { 1,1,2,3,5,8 };

	//常规for循环
	for (int i = 0; i < sizeof(array) / sizeof(array[0]); i++)
	{
		cout << array[i] << " ";
	}

	cout << endl;

	return 0;
}

        C++ 11有类型自动推导auto关键字,在for循环中可以使用,上面的数组输出可以写成下面这种形式:

    for (auto item : array)
	{
		cout << item << " ";
	}

        for(auto 元素 :数据集合),这种写法在迭代一些容器时很方便,不用写迭代器。例如,下面输出multiset的内容:

#include <iostream>
#include <set>

using namespace std;

int main()
{
	multiset<int> ms = { 1,2,6,2,4,3,3,8 };

	//增强for循环输出
	for (auto item : ms)
	{
		cout << item << " ";
	}
	cout << endl;

	//迭代器模式输出
	for (multiset<int>::iterator it = ms.begin(); it != ms.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;

	return 0;
}

       用了增强for循环后,代码更简洁了。

最后

以上就是爱撒娇铅笔为你收集整理的C++增强for循环的全部内容,希望文章能够帮你解决C++增强for循环所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部