What is the proper way to enable my swap in STL algorithms?

1) Member swap. Does std::swap use SFINAE trick to use the member swap.

2) Free standing swap in the same namespace.

3) Partial specialization of std::swap.

4) All of the above.

Thank you.

EDIT: Looks like I didn't word my question clearly. Basically, I have a template class and I need STL algos to use the (efficient) swap method I wrote for that class.

link|improve this question

feedback

2 Answers

up vote 22 down vote accepted

1) is the proper use of swap. Write it this way when you write "library" code and want to enable ADL (argument-dependent lookup) on swap. Also, this has nothing to do with SFINAE.

// some algorithm in your code
template<class T>
void foo(T& lhs, T& rhs){
  using std::swap; // enable 'std::swap' to be found
                   // if no other 'swap' is found through ADL
  // some code ...
  swap(lhs, rhs); // unqualified call, uses ADL and finds a fitting 'swap'
                  // or falls back on 'std::swap'
  // more code ...
}

2) Is the proper way to provide a swap function for your class.

namespace Foo{

class Bar{}; // dummy

void swap(Bar& lhs, Bar& rhs){
  // ...
}

}

If swap is now used as shown in 1), your function will be found. Also, you may make that function a friend if you absolutely need to, or provide a member swap that is called by the free function:

// version 1
class Bar{
public:
  friend void swap(Bar& lhs, Bar& rhs){
    // ....
  }
};

// version 2
class Bar{
public:
  void swap(Bar& other){
    // ...
  }
};

void swap(Bar& lhs, Bar& rhs){
  lhs.swap(rhs);
}

3) You mean an explicit specialization. Partial is still something else and also not possible for functions, only structs / classes. As such, since you can't specialize std::swap for template classes, you have to provide a free function in your namespace. Not a bad thing, if I may say so. Now, an explicit specialization is also possible, but generally considered not as good as 2).

namespace std
{  // only allowed to extend namespace std with specializations

template<> // specialization
void swap<Bar>(Bar& lhs, Bar& rhs){
  // ...
}

}

4) No, as 1) is distinct from 2) and 3). Also, having both 2) and 3) will lead to always having 2) picked, because it fits better.

link|improve this answer
1  
Your (1) and the question's (1) don't really line up, unless I'm misreading something. Still, +1 – Dennis Zickefoose Jun 17 '11 at 3:50
@Dennis: To be honest, I can't really make much out of OP's 1), but if he meant what I think, I covered that in 2) (version 2). – Xeo Jun 17 '11 at 4:01
So you did, somehow I overlooked that. – Dennis Zickefoose Jun 17 '11 at 4:03
@Xeo. Thanks for you input. I edited my question. Does STL use swap as you described it in case 1? – pic11 Jun 17 '11 at 21:44
@pic: Yes, the STL will use the ADL swap I showed in 1), but only if it is there as a free function, not only a member function. See 2) and 3), both versions will be picked by algorithms. I'd advice 2), as 3) is out-dated and considered bad practice. – Xeo Jun 17 '11 at 22:29
show 6 more comments
feedback

Why not write an assignment operator in the class itself?

class T1
{
    int _x;

public:
    T1(int x) : _x(x) {}

    void operator = (const T1& other)
    {
        _x= other._x;
    }

    // Move semantics
    void operator = (const T1 && other)
    {
        _x= other._x;
    }
};

And call std::swap on instances of the class.

EDIT: When T1 is instantiated as follows:

T1 a(10), b(20);

And then std::swap is called:

std::swap(a,b);

The contents of a and b is changed appropriately. std::swap calls the assignment operator of given class.

link|improve this answer
@Downvoter, Did I miss something? – Ajay Jun 20 '11 at 16:29
Note that this is not true for C++0x anymore, as the values will be moved. – Xeo Jun 20 '11 at 18:37
Often swap can be implemented much more efficiently than via "full" copy: think e.g. about two linked lists: a swap is just matter of exchanging two pointers, while a copy requires copying all the elements. That is why often you write a custom swap instead of relying on the default one that uses copy/assignment. – Matteo Italia Jun 20 '11 at 18:45
Added move-assignment operator. I see this is now called via std::swap (VC10). – Ajay Jun 20 '11 at 18:57
Well, the move semantic solves this and other problems nicely. :-) – Matteo Italia Jun 20 '11 at 18:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.