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.
C++ では、次のような 2 つのコード ブロックがあります。
Base *base = new Base(); base->showName();
と:
Base base; base.showName();
いつポインターを使用するのか、いつ使用しないのかわかりませんか? そして、何が違い、何が優れていますか?