命名空间
变体
操作

std::any_cast

来自 cppreference.com
< cpp‎ | utility‎ | any
 
 
实用程序库
语言支持
类型支持 (基本类型, RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
定义在头文件 <any>
template< class T >
T any_cast( const any& operand );
(1) (自 C++17 起)
template< class T >
T any_cast( any& operand );
(2) (自 C++17 起)
template< class T >
T any_cast( any&& operand );
(3) (自 C++17 起)
template< class T >
const T* any_cast( const any* operand ) noexcept;
(4) (自 C++17 起)
template< class T >
T* any_cast( any* operand ) noexcept;
(5) (自 C++17 起)

对包含的对象执行类型安全访问。

Ustd::remove_cv_t<std::remove_reference_t<T>>.

1) 如果 std::is_constructible_v<T, const U&>false,则程序格式错误。
2) 如果 std::is_constructible_v<T, U&>false,则程序格式错误。
3) 如果 std::is_constructible_v<T, U>false,则程序格式错误。
4,5) 如果 std::is_void_v<T>true,则程序格式错误。

内容

[编辑] 参数

operand - 目标 any 对象

[编辑] 返回值

1,2) 返回 static_cast<T>(*std::any_cast<U>(&operand)).
3) 返回 static_cast<T>(std::move(*std::any_cast<U>(&operand))).
4,5) 如果 operand 不是空指针,并且所请求的 Ttypeidoperand 内容的 typeid 匹配,则指向 operand 包含的值的指针,否则为空指针。

[编辑] 异常

1-3) 如果所请求的 Ttypeidoperand 内容的 typeid 不匹配,则抛出 std::bad_any_cast

[编辑] 示例

#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<std::string const&>(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';
}

可能的输出

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

[编辑] 缺陷报告

以下行为更改缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 发布的行为 正确行为
LWG 3305 C++17 重载 (4,5) 的行为在 Tvoid 时不清楚 在这种情况下程序格式错误