I want to make a member pointer as a shared_ptr, but I am not sure that the shared_ptr itself will be alive after the containing class destroyed. I tested the code below, but I am not sure that it will fit correctly at run time?
using std::cout;
using std::cin;
using std::endl;
class Widget
{
public:
Widget()
{
cout<<__FUNCTION__<<"()"<<endl;
}
~Widget()
{
cout<<__FUNCTION__<<"()"<<endl;
}
void display()
{
cout<<"the smart pointers are really smart"<<endl;
}
private:
};
class Window
{
public:
Window()
:widget_(new Widget())
{
}
Widget* widget()
{
return widget_.get();
}
private:
std::shared_ptr<Widget> widget_;
};
int main()
{
Widget* outer = nullptr;
{
Window wind;
outer = wind.widget();
}
outer->display();
cout<<"enter"<<endl;
cin.get();
return 0;
}
`