2
Sao chép hàm tạo với đối số không const được đề xuất bởi các quy tắc an toàn luồng?
Tôi có một trình bao bọc cho một số mã di sản. 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 }; Trong mã …