2
Salin konstruktor dengan argumen non-const yang disarankan oleh aturan utas keselamatan?
Saya punya pembungkus untuk beberapa kode warisan. class A{ L* impl_; // the legacy object has to be in the heap, could be also unique_ptr A(A const&) = delete; L* duplicate(){L* ret; legacy_duplicate(impl_, &L); return ret;} ... // proper resource management here }; Dalam kode lawas ini, fungsi yang "menduplikasi" …