通过空指针访问类成员时不会崩溃

时间:2017-11-17 11:52:40

标签: c++ class null-pointer

我为我的类创建了一个空指针。并尝试使用该指针访问类方法但代码没有崩溃。

这可能是什么原因?是否有关于内存管理的文档。

以下是我正在使用的代码,

=============================================== ==

#include <iostream>
#include <stdio.h>

using namespace std;

class D
{
public:
    int a;
    void print()
    {
        std::cout << "New class" << endl;
    }
};

int main()
{
    D *dptr = nullptr;
    dptr->print();

    cin.get();
}

0 个答案:

没有答案