friend constexpr void swap(polymorphic& lhs, polymorphic& rhs) noexcept(see below);
概要
2つのpolymorphicオブジェクトを交換する。Hidden friendsとして定義される。
効果
lhs.swap(rhs)と等価。
例外
以下と等価なnoexcept指定を持つ:
noexcept(noexcept(lhs.swap(rhs)))
例
#include <cassert>
#include <memory>
struct Base { virtual ~Base() = default; virtual int f() const = 0; };
struct D1 : Base { int f() const override { return 1; } };
struct D2 : Base { int f() const override { return 2; } };
int main()
{
std::polymorphic<Base> a{std::in_place_type<D1>};
std::polymorphic<Base> b{std::in_place_type<D2>};
swap(a, b); // ADLにより非メンバswapが呼ばれる
assert(a->f() == 2 && b->f() == 1);
}
出力
バージョン
言語
- C++26
処理系
- Clang: 22 ❌
- GCC: 16.1 ✅
- Visual C++: 2026 Update 2 ❌