1 Star 0 Fork 1

llongger/Code_C++

forked from GodOuO/Code_C++ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
28.*Null_func.cpp 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
GodOuO 提交于 2023-03-15 04:06 . Train
#include<iostream>
#include<string>
using namespace std;
class Person
{
private:
int m_age;
public:
void showClassName(){
if(NULL == this)
return;
cout<<"This is Person Class!"<<endl;
}
void showAge(){
if(NULL == this)
return;
cout<<"Age :\t"<<this->m_age<<endl; //报错原因是因为 传入的指针为空this->m_age
}
Person(/* args */);
~Person();
};
Person::Person(/* args */)
{
}
Person::~Person()
{
}
void test01(){
Person *p = NULL;
p->showClassName();
p->showAge();
}
int main(){
test01();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llongger/codeCpp.git
[email protected]:llongger/codeCpp.git
llongger
codeCpp
Code_C++
master

搜索帮助