您好,我是 C++ 新手,
我可以使用创建一个类的新实例Example example("123")
我有两个问题
我知道我们无法检查对象是否为空,
if(example ==NULL)
因为这不是指针,我们还有其他方法可以做到这一点。我有一种返回对象的方法,例如:如何返回 null?
Example get_Example() { if (example.getName().empty() { Example example("345"); return example; } return NULL // i cannot return null. }
我可以做这样的事情吗?
Example get_Example() {
Example example;
if (example.getName().empty() {
example = Example example("345");
return example;
}
return NULL // i cannot return null. How
}
example = Example example("345");
我知道这很愚蠢但是没有指针我怎么能做到这一点。