스레드 안전 규칙에서 제안한 비 const 인수로 생성자를 복사 하시겠습니까?
레거시 코드에 래퍼가 있습니다. 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 }; 이 레거시 코드에서 객체를 "중복"하는 함수는 스레드로부터 안전하지 않으므로 (같은 …