Can a constructor return a NULL value?(构造函数可以返回 NULL 值吗?)
问题描述
我知道构造函数不会返回"任何东西,例如如果我调用 CMyClass *object = new CMyClass()
如果构造函数失败,有什么方法可以使 object 为 NULL?就我而言,我有一些必须加载的图像,如果文件读取失败,我希望它返回 null.有什么办法吗?
提前致谢.
I know constructors don't "return" anything but for instance if I call CMyClass *object = new CMyClass()
is there any way to make object to be NULL if the constructor fails? In my case I have some images that have to be loaded and if the file reading fails I'd like it to return null. Is there any way to do that?
Thanks in advance.
推荐答案
我同意其他人的观点,你应该使用异常,但如果你真的需要使用 NULL 出于某种原因,请将构造函数设为私有并使用工厂方法:
I agree with everyone else that you should use exceptions, but if you do really need to use NULL for some reason, make the constructor private and use a factory method:
static CMyClass* CMyClass::create();
这意味着你不能正常构造实例,你不能再在堆栈上分配它们,这是一个很大的缺点.
This means you can't construct instances normally though, and you can't allocate them on the stack anymore, which is a pretty big downside.
这篇关于构造函数可以返回 NULL 值吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:构造函数可以返回 NULL 值吗?


基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30