次のようなオブジェクトのデストラクタがあるとします。
anObject::~anObject()
{
_functionCalledfromDestructor=1; //this sets the flag = 1
functionCall(); //this function does something different than usual
//on seeing the flag
}
私の質問:
デストラクタでのコーディングのこのスタイル/方法は良い習慣ですか?