Namespaces
Variants
Actions

std::any::swap

From cppreference.com
< cpp‎ | utility‎ | any
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
(C++20)(C++20)(C++20)  
(C++20)
(C++20)
(C++14)
(C++11)
(C++11)
(C++23)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)


 
 
void swap( any& other ) noexcept;
(since C++17)

Swaps the content of two any objects.

[edit] Parameters

other - object to swap with

[edit] Example

Run this code
#include <any>
#include <print>
#include <string>
#include <string_view>
 
int main()
{
 std::any a = std::string {"King"};
 std::any b = std::string_view {"Queen"};
 std::println ("a = {}", std::any_cast <std::string &>(a));
 std::println ("b = {}", std::any_cast <std::string_view &>(b));
 std::println ("swap(a, b)");
 a.swap(b);
 std::println ("a = {}", std::any_cast <std::string_view &>(a));
 std::println ("b = {}", std::any_cast <std::string &>(b));
}

Output:

a = King
b = Queen
swap(a, b)
a = Queen
b = King
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/utility/any/swap&oldid=179378"

AltStyle によって変換されたページ (->オリジナル) /