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

下标越界

时间:2014-12-06 16:37:39      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

#include<iostream>
#include<string>
#include<stddef.h>
using namespace std;

string sa[10];
int ia[10];
int main()
{
    const size_t array_size = 10;
    int ia[array_size];
    for (size_t ix = 1; ix <= array_size; ++ix)
    {
        ia[ix] = ix;
        cout << ia[ix] << endl;
    }
        
    return 0;
}

上代码所示位置,出现了下标越界的情况,在编译时不提示错误,在调试过程中出现如下错误:

bubuko.com,布布扣

只需要将等号去掉就可以;

下标越界

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/lwflourish/p/4148323.html

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