为了账号安全,请及时绑定邮箱和手机立即绑定

有谁知道问题是什么,求大神

#include<iostream>
#include<stdlib.h>
using namespace std;

class coord
{
public:
    int x;
    int y;
    void printf_X()
    {
        cout << x << endl;
    }
    void printf_Y()
    {
        cout << y << endl;
    }
};




int main()
{
    coord cc;
    cc.x = 7;
    cc.y = 9;
    cc.printf_X();
    cc.printf_Y();

    coord *p = new coord();
    if (NULL = p)
    {
        system("pause");
            return 0;
    }
    p->x = 100;
    p->y = 200;
    p->printf_X();
    p->printf_Y();

    delete p;
    p = NULL;
    
    system("pause");
    return 0;

}


正在回答

2 回答

NULL = p应该为p==NULL

0 回复 有任何疑惑可以回复我~

判断等号

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103409    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

有谁知道问题是什么,求大神

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信