I have a class that receives a shared pointer in its constructor and stores it in a weak pointer but I'm not sure how (and where) to do this conversion.
class A {
public:
A(std::shared_ptr<B> Bptr);
private:
std::weak_ptr<B> m_Bptr;
};
Should I convert the shared_ptr
before passing to the constructor or not?
Does passing the shared_ptr
to the weak_ptr
through an initialization list like this A(std::shared_ptr<B> Bptr) : m_Bptr(Bptr) { }
works as expected or I need to explicitly convert in the body of the constructor?
Aucun commentaire:
Enregistrer un commentaire