命名空间
变体
操作

std::any::operator=

来自 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& operator=( const any& rhs );
(1) (自 C++17 起)
any& operator=( any&& rhs ) noexcept;
(2) (自 C++17 起)
template< typename ValueType >
any& operator=( ValueType&& rhs );
(3) (自 C++17 起)

将内容分配给包含的值。

1) 通过复制 rhs 的状态进行分配,就像使用 std::any(rhs).swap(*this) 一样。
2) 通过移动 rhs 的状态进行分配,就像使用 std::any(std::move(rhs)).swap(*this) 一样。分配后,rhs 处于有效但未指定的狀態。
3) 分配 rhs 的类型和值,就像使用 std::any(std::forward<ValueType>(rhs)).swap(*this) 一样。只有当 std::decay_t<ValueType> 的类型与 std::any 不同,并且 std::is_copy_constructible_v<std::decay_t<ValueType>>true 时,此重载才参与重载解析。

内容

[edit] 模板参数

ValueType - 包含的值类型
类型需求
-
std::decay_t<ValueType> 必须满足 CopyConstructible 的要求。

[edit] 参数

rhs - 要分配其包含值的的对象

[edit] 返回值

*this

[edit] 异常

1,3) 抛出 std::bad_alloc 或包含类型构造函数抛出的任何异常。如果因任何原因抛出异常,这些函数将不会产生任何效果 (强异常安全性保证)。

[edit] 示例

#include <any>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <string>
#include <typeinfo>
 
int main()
{
    using namespace std::string_literals;
    std::string cat{"cat"};
 
    std::any a1{42};
    std::any a2{cat};
    assert(a1.type() == typeid(int));
    assert(a2.type() == typeid(std::string));
 
    a1 = a2; // overload (1)
    assert(a1.type() == typeid(std::string));
    assert(a2.type() == typeid(std::string));
    assert(std::any_cast<std::string&>(a1) == cat);
    assert(std::any_cast<std::string&>(a2) == cat);
 
    a1 = 96; // overload (3)
    a2 = "dog"s; // overload (3)
    a1 = std::move(a2); // overload (2)
    assert(a1.type() == typeid(std::string));
    assert(std::any_cast<std::string&>(a1) == "dog");
    // The state of a2 is valid but unspecified. In fact,
    // it is void in gcc/clang and std::string in msvc.
    std::cout << "a2.type(): " << std::quoted(a2.type().name()) << '\n';
 
    a1 = std::move(cat); // overload (3)
    assert(*std::any_cast<std::string>(&a1) == "cat");
    // The state of cat is valid but indeterminate:
    std::cout << "cat: " << std::quoted(cat) << '\n';
}

可能的输出

a2.type(): "void"
cat: ""

[edit] 另请参阅

构造一个 any 对象
(公共成员函数) [edit]