其他分享
首页 > 其他分享> > c – 是否可以将对象设置为null?

c – 是否可以将对象设置为null?

作者:互联网

在我的代码中,我检查以查看对象是否为空/空.

有没有办法将对象设置为null?

解决方法:

类的对象不能设置为NULL;但是,您可以将指针(包含对象的内存地址)设置为NULL.

你不能做什么的例子:

Cat c;
c = NULL;//Compiling error

你可以做什么的例子:

Cat c;
//Set p to hold the memory address of the object c
Cat *p = &c;
//Set p to hold NULL
p = NULL;

标签:c,object,is-empty,null,stdoptional
来源: https://codeday.me/bug/20190923/1815452.html