1

可能重复:
当我在 NULL 对象指针上调用成员函数时会发生什么?

#include <iostream>
#include <string>

using namespace std;

class myClass{
private:
        int *x, *y, *z;

public:
        myClass();
    ~myClass();
    void display();
    void math(int,int,int);
};


void myClass::math(int x,int y,int z){
    this->x = new int;
    this->y = new int;
    this->z = new int;

    *this->x = x;
    *this->y = y;
    *this->z = z;

    cout << "result: " << (x*y)+z << endl;
}

myClass::~myClass(){
    delete x;
    delete y;
    delete z;
}

void myClass::display(){
    cout << x << y << z << endl;
}

myClass::myClass(){
    x=0;
    y=0;
    z=0;
}


int main()
{
    myClass myclass;
    myClass *myptr;
    myptr = new myClass();

        myclass.math(1,1,1);

myptr->math(1,1,1);

delete myptr;

myptr->math(1,1,1);  **//why does this still print?**



int t;
cin >> t;

 }

:::输出:::

结果:2

结果:2

结果:2

我只是在 C++ 中胡闹,试图了解更多。我想看看 delete 操作符到底做了什么。为什么删除对象后我仍然得到“结果:2”的第三个输出?

4

2 回答 2

4

对象内存可能还没有被其他东西覆盖。不要做这样的事情,这是未定义的行为

于 2012-11-03T05:34:19.087 回答
3

那是未定义的行为。愿恶魔从你的鼻子里飞出来。

还有另一个方面。当一个对象是deleted 时,它不会从内存中删除,直到它被之后可能创建的其他对象覆盖。因此,即使它被标记为被回收,数据(由指针指向)也可能与释放时一样。但不能保证它不会被使用。这就是为什么它的未定义行为。

于 2012-11-03T05:35:53.870 回答