首页 > C++关于类的成员函数的调用问题
头像
RingShine
发布于 2021-06-02 17:43
+ 关注

C++关于类的成员函数的调用问题

#include <iostream>

using namespace std;

class A{
public:
    A(){};
    ~A(){}
    
    void Print(){
        cout<<"A"<<endl;
    }
    virtual void Print2(){
        cout<<"A2"<<endl;
    }
    void display(){
        cout<<a<<endl;
    }

private:
    int a=2;

};



int main()
{
    A* a;
    a->Print();
    a->Print2();
    a->display();
}
为什么a->Print();能调用成功而后面两行调用都会出现段错误呢

全部评论

(4) 回帖
加载中...
话题 回帖

相关热帖

近期热帖

近期精华帖

热门推荐