Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ペア ポインターがあるので、std::pair< A*, B* >* ポインターペアと仮定します。メモリを割り当て、ペアを使用した後、delete pointerpair を呼び出します。
また、delete A と delete B を呼び出して、メモリを完全に解放しますか?
delete Aとdelete Bのみを呼び出し、delete pointerpairを呼び出さない場合、メモリリークですか?
いいえ.............
いいえ、自動的には行われません。明示的に削除する必要があります。