std::any_cast
Von cppreference.com
| Definiert in der Header-Datei <any> |
||
| template< class T > T any_cast( const any& operand ); |
(1) | (seit C++17) |
| template< class T > T any_cast( any& operand ); |
(2) | (seit C++17) |
| template< class T > T any_cast( any&& operand ); |
(3) | (seit C++17) |
template< class T > const T* any_cast( const any* operand ) noexcept; |
(4) | (seit C++17) |
| template< class T > T* any_cast( any* operand ) noexcept; |
(5) | (seit C++17) |
Ermöglicht typsicheren Zugriff auf das enthaltene Objekt.
Sei U std::remove_cv_t<std::remove_reference_t<T>>.
Inhalt |
[bearbeiten] Parameter
| operand | - | Ziel-any-Objekt |
[bearbeiten] Rückgabewert
1,2) Gibt static_cast<T>(*std::any_cast<U>(&operand)) zurück.
3) Gibt static_cast<T>(std::move(*std::any_cast<U>(&operand))) zurück.
4,5) Wenn operand kein Nullzeiger ist und die typeid des angeforderten
T mit der des Inhalts von operand übereinstimmt, ein Zeiger auf den von operand enthaltenen Wert, andernfalls ein Nullzeiger.[bearbeiten] Ausnahmen
1-3) Wirft std::bad_any_cast, wenn die typeid des angeforderten
T nicht mit der des Inhalts von operand übereinstimmt.[bearbeiten] Beispiel
Führen Sie diesen Code aus
#include <any> #include <iostream> #include <string> #include <type_traits> #include <utility> int main() { // Simple example auto a1 = std::any(12); std::cout << "1) a1 is int: " << std::any_cast<int>(a1) << '\n'; try { auto s = std::any_cast<std::string>(a1); // throws } catch (const std::bad_any_cast& e) { std::cout << "2) " << e.what() << '\n'; } // Pointer example if (int* i = std::any_cast<int>(&a1)) std::cout << "3) a1 is int: " << *i << '\n'; else if (std::string* s = std::any_cast<std::string>(&a1)) std::cout << "3) a1 is std::string: " << *s << '\n'; else std::cout << "3) a1 is another type or unset\n"; // Advanced example a1 = std::string("hello"); auto& ra = std::any_cast<std::string&>(a1); // reference ra[1] = 'o'; std::cout << "4) a1 is string: " << std::any_cast<const std::string&>(a1) << '\n'; // const reference auto s1 = std::any_cast<std::string&&>(std::move(a1)); // rvalue reference // Note: “s1” is a move-constructed std::string: static_assert(std::is_same_v<decltype(s1), std::string>); // Note: the std::string in “a1” is left in valid but unspecified state std::cout << "5) a1.size(): " << std::any_cast<std::string>(&a1)->size() // pointer << '\n' << "6) s1: " << s1 << '\n'; }
Mögliche Ausgabe
1) a1 is int: 12 2) bad any_cast 3) a1 is int: 12 4) a1 is string: hollo 5) a1.size(): 0 6) s1: hollo
[bearbeiten] Defect reports
Die folgenden Verhaltensändernden Fehlerberichte wurden rückwirkend auf zuvor veröffentlichte C++-Standards angewendet.
| DR | angewendet auf | Verhalten wie veröffentlicht | Korrigiertes Verhalten |
|---|---|---|---|
| LWG 3305 | C++17 | Das Verhalten der Überladungen (4,5) war unklar, wenn T void ist |
das Programm ist in diesem Fall ill-formed |