extern 参照を更新する基本クラスがあり、この参照をメンバーとして埋め込む継承クラスを作成したいと考えています。参照の一種のデフォルト初期化。
私は次の解決策を思いつきました:
#include<iostream>
class Statefull
{
public:
Statefull( int& ref ) : _base_ref(ref) {}
int& _base_ref;
// update the extern variable
void work() { std::cout << ++_base_ref << std::endl; }
};
class Stateless : public Statefull
{
public:
// use a temporary allocation
Stateless( int* p = new int() ) :
// we cannot initialize local members before base class:
// _dummy(), Statefull(_dummy)
// thus, initialize the base class on a ref to the temporary variable
Statefull(*p),
_tmp(p),
_dummy()
{
// redirect the ref toward the local member
this->_base_ref = _dummy;
}
int* _tmp;
int _dummy;
// do not forget to delete the temporary
~Stateless() { delete _tmp; }
};
int main()
{
int i = 0;
Statefull full(i);
full.work();
Stateless less;
less.work();
}
しかし、コンストラクターのデフォルトの引数で一時的な割り当てが必要になるのはかなり見苦しいです。基本クラスのコンストラクターで参照を保持しながら、この種のデフォルトの初期化を実現するより洗練された方法はありますか?