std::chrono::zoned_time<Duration,TimeZonePtr>::operator=
来自 cppreference.com
< cpp | chrono | zoned time
zoned_time& operator=( const zoned_time& other ) = default; |
(1) | (自 C++20 起) |
zoned_time& operator=( const std::chrono::sys_time<Duration>& other ); |
(2) | (自 C++20 起) |
zoned_time& operator=( const std::chrono::local_time<Duration>& other ); |
(3) | (自 C++20 起) |
将 other 的值赋给 *this.
1) 默认的复制赋值运算符。复制赋值存储的时间点和存储的时区指针。
zoned_time
没有移动赋值运算符;移动就是复制。2) 将 other 赋给存储的时间点。时区指针保持不变。此调用后,get_sys_time() == other.
3) 将 other 转换为 std::chrono::sys_time,就像通过 zone->to_sys(other) (其中
zone
是保存存储的时区指针的非静态数据成员)一样,并将结果赋给存储的时间点。时区指针保持不变。此调用后,get_local_time() == other.[edit] 返回值
*this