美文网首页
C++类的空指针调用成员函数

C++类的空指针调用成员函数

作者: 科英 | 来源:发表于2020-03-10 11:27 被阅读0次
    class A 
    {
    public:
        void print()
        {
            cout << "hello" << endl;
        }
        void print2()
        {
            cout << "hello" << b << endl;
        }
        int b;
    }
    
    int main()
    {
      A *a;
      a->print();// 1
      a->print2();// 2
    }
    

    答案:
    1处不会报错,正常输出 hello
    2处会报错,Segmentation fault

    相关文章

      网友评论

          本文标题:C++类的空指针调用成员函数

          本文链接:https://www.haomeiwen.com/subject/cmtwdhtx.html