The copy-and-swap tag has no wiki summary.
166
votes
2answers
10k views
What is the copy-and-swap idiom?
What is this idiom and when should it be used? Which problems does it solve? Will the idiom change when C++0x is used?
Although it's been mentioned in many places, we didn't have any singular "what ...
10
votes
6answers
212 views
reusing the copy-and-swap idiom
I'm trying to put the copy-and-swap idiom into a reusable mixin:
template<typename Derived>
struct copy_and_swap
{
Derived& operator=(Derived copy)
{
Derived* derived = ...
9
votes
3answers
444 views
public friend swap member function
In the beautiful answer to the copy-and-swap-idiom there is a piece of code I need a bit of help:
class dumb_array
{
public:
// ...
friend void swap(dumb_array& first, dumb_array& ...
9
votes
3answers
1k views
What is copy elision and how does it optimize the copy-and-swap idiom?
I was reading Copy and Swap.
I tried reading some links on Copy Elision but could not figure out properly what it meant. Can somebody please explain what this optimization is, and especially what is ...
7
votes
3answers
337 views
Safe assignment and copy-and-swap idiom
I'm learning c++ and I recently learned (here in stack overflow) about the copy-and-swap idiom and I have a few questions about it. So, suppose I have the following class using a copy-and-swap idiom, ...
6
votes
2answers
212 views
Why do some people use swap for move assignments?
For example, stdlibc++ has the following:
unique_lock& operator=(unique_lock&& __u)
{
if(_M_owns)
unlock();
unique_lock(std::move(__u)).swap(*this);
__u._M_device = 0;
...
6
votes
1answer
384 views
Assignment via copy-and-swap vs two locks
Borrowing Howard Hinnant's example and modifying it to use copy-and-swap, is this op= thread-safe?
struct A {
A() = default;
A(A const &x); // Assume implements correct locking and copying.
...
4
votes
3answers
134 views
Is it OK to have a throwing swap member-implementation?
The general guideline when writing classes (using the copy-and-swap idiom) is to provide a non throwing swap member function. (Effective C++, 3rd edition, Item 25 and other resources)
However, what ...
2
votes
1answer
88 views
How do I swap an MFC CString?
OK, so I'm all sold on the copy-and-swap idiom and I think I mostly know how to implement it.
However, or codebase uses MFC's CString class as string and this ain't gonna change.
Since swap must ...
2
votes
3answers
208 views
Does it make sense to use the move-and-swap idiom on a movable and non-copyable class
If I have a class such as
class Foo{
public:
Foo(){...}
Foo(Foo && rhs){...}
operator=(Foo rhs){ swap(*this, rhs);}
void swap(Foo &rhs);
private:
Foo(const Foo&);
...
1
vote
2answers
137 views
Lock-free Shared Memory in C++ for Variable length Records
I am newbee to IPC. The Writer process writes the data into shared memory, Many reader processes reads the data. The data to be written have a unique identifier, has to be be indexed by unique key for ...
1
vote
2answers
81 views
Unresolved external using template class with copy-and-swap
I'm getting a linker error when using a template class where I tried implementing the copy-and-swap idiom as suggested here:
What is the copy-and-swap idiom?
The template class, let's call it ...
0
votes
1answer
44 views
Copy-and-Swap idiom for class with references to abstract classes
I'm trying to implement the Copy-and-Swap Idiom for my class, because I need to implement operator=, and since it has reference members, and references can only be assigned once, I thought that the ...