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

c++11 基于范围的for循环

时间:2017-11-05 14:34:11      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:str   个数   无法   变量   tor   形参   war   turn   std   

c++11 基于范围的for循环

 

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <string>
#include <vector>
#include <map>

int func(int a[]) // 形参中数组是指针变量,无法确定元素个数
{
    for (auto e: a) // err, 编译失败, 无法找到合适的begin函数
    {
        std::cout << e << " "
    }
    std::cout << std::endl;
}


void mytest()
{
    int a[5] = {1,2,3,4,5};
    // 使用基于范围的for循环
    for (int & e: a)
    {
        e *= 2;
    }
    for (int & e: a)
    {
        std::cout << e << " ";
    }
    std::cout << std::endl;

    // 导致内部编译器错误
    func(a);

    return;
}

int main()
{
    mytest();

    system("pause");
    return 0;
}

 

c++11 基于范围的for循环

标签:str   个数   无法   变量   tor   形参   war   turn   std   

原文地址:http://www.cnblogs.com/lsgxeva/p/7787260.html

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