問題タブ [make-shared]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
2 に答える
1165 参照

c++ - 「make_shared」より「shared_ptr」を優先する必要があるのはいつですか?

Difference in make_shared and normal shared_ptr in C++への回答で指摘されているように、ほとんどの場合make_sharedより優れています。shared_ptr

では、なぜ C++ 標準では両方shared_ptrmake_shared一緒に定義されているのでしょうか? を優先shared_ptrする必要がある場合make_sharedや、使用できるのに使用できない場合shared_ptrもありmake_sharedますか?