O exemplo a seguir mostra várias maneiras de declarar e inicializar um shared_ptr junto com um novo objeto.C++ Copiar // Use make_shared function when possible. auto sp1 = make_shared<Song>(L"The Beatles", L"Im Happy Just to Dance With You"); // Ok, but slightly less efficient...