Namespaces
Variants
Views
Actions

std::any

From cppreference.com
< cpp‎ | utility
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
any
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
Defined in header <any>
class any;
(since C++17)

The class any describes a type-safe container for single values of any copy constructible type.

1) An object of class any stores an instance of any type that satisfies the constructor requirements or is empty, and this is referred to as the state of the class any object. The stored instance is called the contained object. Two states are equivalent if they are either both empty or if both are not empty and if the contained objects are equivalent.
2) The non-member any_cast functions provide type-safe access to the contained object.

Implementations are encouraged to avoid dynamic allocations for small objects, but such an optimization may only be applied to types for which std::is_nothrow_move_constructible returns true.

Contents

[edit] Member functions

constructs an any object
(public member function) [edit]
assigns an any object
(public member function) [edit]
destroys an any object
(public member function) [edit]
Modifiers
change the contained object, constructing the new object directly
(public member function) [edit]
destroys contained object
(public member function) [edit]
swaps two any objects
(public member function) [edit]
Observers
checks if object holds a value
(public member function) [edit]
returns the typeid of the contained value
(public member function) [edit]

[edit] Non-member functions

specializes the std::swap algorithm
(function) [edit]
(C++17)
type-safe access to the contained object
(function template) [edit]
(C++17)
creates an any object
(function template) [edit]

[edit] Helper classes

exception thrown by the value-returning forms of any_cast on a type mismatch
(class) [edit]

[edit] Notes

Feature-test macro Value Std Feature
__cpp_lib_any 201606L (C++17) std::any

[edit] Example

#include <any>
#include <iostream>
 
int main()
{
    std::cout << std::boolalpha;
 
    // any type
    std::any a = 1;
    std::cout << a.type().name() << ": " << std::any_cast<int>(a) << '\n';
    a = 3.14;
    std::cout << a.type().name() << ": " << std::any_cast<double>(a) << '\n';
    a = true;
    std::cout << a.type().name() << ": " << std::any_cast<bool>(a) << '\n';
 
    // bad cast
    try
    {
        a = 1;
        std::cout << std::any_cast<float>(a) << '\n';
    }
    catch (const std::bad_any_cast& e)
    {
        std::cout << e.what() << '\n';
    }
 
    // has value
    a = 2;
    if (a.has_value())
        std::cout << a.type().name() << ": " << std::any_cast<int>(a) << '\n';
 
    // reset
    a.reset();
    if (!a.has_value())
        std::cout << "no value\n";
 
    // pointer to contained data
    a = 3;
    int* i = std::any_cast<int>(&a);
    std::cout << *i << '\n';
}

Possible output:

int: 1
double: 3.14
bool: true
bad any_cast
int: 2
no value
3

[edit] See also

(C++11)
wraps callable object of any copy constructible type with specified function call signature
(class template) [edit]
wraps callable object of any type with specified function call signature
(class template) [edit]
(C++17)
a type-safe discriminated union
(class template) [edit]
(C++17)
a wrapper that may or may not hold an object
(class template) [edit]