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.
キューのデータ構造があるとしましょう。
Queue()
次の場合、メモリ リークが発生します。
Queue* test = new Queue(); Queue* test1 = test; delete test1;
いいえ、しかし、2 つのダングリング ポインターが残りtestますtest1。意味のあるものを指し示すまで、それらを使用することはできません。
test
test1