vote up 8 vote down star
3

std::swap() is used by many std containers (such as std::list and std::vector) during sorting and even assignment.

But the std implementation of swap() is very generalized and rather inefficient for custom types.

Thus efficiency can be gained by overloading std::swap() with a custom type specific implementation. But how can you implement it so it will be used by the std containers?

flag

3 Answers

vote up 11 vote down check

You're not allowed (by the C++ standard) to overload std::swap, however you are specifically allowed to add template specializations for your own types to the std namespace. E.g.


namespace std
{
    template
    void swap(my_type& lhs, my_type& rhs)
    {
       // ... blah
    }
}

then the usages in the std containers (and anywher else) will pick your specialization instead of the general one.

Also note that providing a base class implementation of swap isn't good enough for your derived types. E.g. if you have


class Base
{
    // ... stuff ...
}
class Derived : public Base
{
    // ... stuff ...
}

namespace std { template<> void swap(Base& lha, Base& rhs) { // ... } }

this will work for Base classes, but if you try to swap two Derived objects it will use the generic version in std because the tempted swap is an exact match (and it avoids the problem of only swapping the 'base' parts of your derived objects).

NOTE: I've updated this to remove the wrong bits from my last answer. Doh! (thanks puetzk and j_random_hacker for pointing it out)

link|flag
Mostly good advice, but I have to -1 because of the subtle distinction noted by puetzk between specialising a template in the std namespace (which is allowed by the C++ standard) and overloading (which isn't). – j_random_hacker Mar 11 at 13:56
Doh! thanks for pointing that out, it's been a long time since I've touched C++ so I'm blaming that for the wrong info there :) – Wilka Mar 12 at 22:34
vote up 1 vote down

Swap is generally efficient because it swaps only the internal data of the containers. It only swaps some internal pointers that refer to the data (elements, allocator, sorting criterion, if any).

You may want to write your own implementation of swap for your user defined types but why would you want to use that implementation on the standard containers ?

link|flag
vote up 12 vote down

While it's correct that one shouldn't generally add stuff to the std:: namespace, adding template specializations for user-defined types is specifically allowed. Overloading the functions is not. This is a subtle difference :-)

17.4.3.1/1 It is undefined for a C++ program to add declarations or definitions to namespace std or namespaces with namespace std unless otherwise specified. A program may add template specializations for any standard library template to namespace std. Such a specialization (complete or partial) of a standard library results in undefined behaviour unless the declaration depends on a user-defined name of external linkage and unless the template specialization meets the standard library requirements for the original template.

A specialization of std::swap would look like:

namespace std
{
    template<>
    void swap(myspace::mytype& a, myspace::mytype& b) { ... }
}

Without the template<> bit it would be an overload, which is undefined, rather than a specialization, which is permitted. @Wilka's suggest approach of changing the default namespace may work with user code (due to Koenig lookup preferring the namespace-less version) but it's not guaranteed to, and in fact isn't really supposed to (the STL implementation ought to use the fully-qualified std::swap).

There is a thread on comp.lang.c++.moderated with a long dicussion of the topic. Most of it is about partial specialization, though (which there's currently no good way to do).

link|flag

Your Answer

Get an OpenID
or

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