C ++中的两阶段构造 [英] Two phase Construction in C++

查看:52
本文介绍了C ++中的两阶段构造的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

作为任务的一部分,我研究了使用针对C ++类的两阶段"构造的开发套件:

I have as part of assignment to look into a development kit that uses the "two-phase" construction for C++ classes:

// Include Header
class someFubar{
public:
    someFubar();
    bool Construction(void);
    ~someFubar();
private:
    fooObject _fooObj;
}

在源中

// someFubar.cpp
someFubar::someFubar : _fooObj(null){ }

bool 
someFubar::Construction(void){
    bool rv = false;
    this->_fooObj = new fooObject();
    if (this->_fooObj != null) rv = true;
    return rv;
}

someFubar::~someFubar(){
    if (this->_fooObj != null) delete this->_fooObj;
}

为什么要使用两阶段"?有什么好处?为什么不只是在实际的构造函数中实例化对象初始化呢?

Why would this "two-phase" be used and what benefits are there? Why not just instantiate the object initialization within the actual constructor?

推荐答案

有关两阶段构建.

这个想法是,您不能从构造函数返回值来指示失败.指示构造函数故障的唯一方法是引发异常.这并非总是可取的,尤其是因为异常安全性是一个非常复杂的主题.

The idea is that you cannot return a value from a constructor to indicate failure. The only way to indicate constructor failure is to throw an exception. This is not always desirable, not least because exception safety is a very complex topic.

因此,在这种情况下,构造被拆分:一个不引发但也不完全初始化的构造函数,以及一个进行初始化并可以返回成功或失败指示而无需(不必)引发异常的函数.

So in this case the construction is split up: a constructor that does not throw, but also does not fully initialize, and a function that does the initialization and can return an indication of success or failure without (necessarily) throwing exceptions.

这篇关于C ++中的两阶段构造的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆