通过基类的指针在派生类数组中访问派生类引发的越界问题

#include<iostream>
class Base
{
public:
    int x;
};

class Derive : public Base
{
    int y;
};

void fun(Base* b)
{
    b[1].x = 1;
}

int main()
{
    Derive arr[5];
    fun(arr);
    std::cout<<arr[1].x<<std::endl;

    return 0;
}

 

  输出结果:

                               

 结论:通过打印结果可以发现是overrun行为

 

原因分析:C++派生类内存大小>=基类,并且C++没有内存安全检查,因此通过基类类型指针去对子类赋值时,可能会造成越界行为.

  

posted @ 2024-03-19 16:44  HJfjfK  阅读(9)  评论(0编辑  收藏  举报